We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e552d39 commit b05e301Copy full SHA for b05e301
1 file changed
build.sh
@@ -135,7 +135,6 @@ select_lower_api() {
135
136
build_jni_libs() {
137
app_root=$(readlink -f ../)
138
- bins=$(readlink -fm ../libs/${abi})
139
140
ndk_args="APP_OPTIM=debug NDK_DEBUG=1 " # debug
141
ndk_args+="APP_PLATFORM=android-${api} " # force android api level
@@ -155,6 +154,7 @@ build_jni_libs() {
155
154
156
for abi in $abis; do
157
objs="${app_root}/obj/android-${api}/local/${abi}"
+ bins=$(readlink -fm ../libs/${abi})
158
159
for lib in cSploitCommon cSploitClient; do
160
install -p "${objs}/lib${lib}.so" "${bins}/lib${lib}.so" >&3 2>&1 || die
0 commit comments