Skip to content

Commit 01688e4

Browse files
Removing libstlport_shared.so and updating Makefile to pull libstlport_shared.so from
the ${ANDROID_NDK_ROOT} path. The copy of libstlport_shared.so is different with the latest NDK release (revision 7) and the binary .so files are not compatible with the older version of libstlport_shared.so. Now we should package the libstlport_shared.so available from the build environment. Note the changes to the Makefile require the ANDROID_NDK_ROOT environment variable be defined.
1 parent 790f27f commit 01688e4

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Makefile

+3-1
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,6 @@ copy-libs:
3232
${LIBRARY_ROOT}/armeabi && \
3333
cp jni/libs/armeabi/libdatabase_sqlcipher.so \
3434
${LIBRARY_ROOT}/armeabi && \
35-
cp bin/classes/sqlcipher.jar ${LIBRARY_ROOT}
35+
cp bin/classes/sqlcipher.jar ${LIBRARY_ROOT} && \
36+
cp ${ANDROID_NDK_ROOT}/sources/cxx-stl/stlport/libs/armeabi/libstlport_shared.so \
37+
${LIBRARY_ROOT}/armeabi

libs/armeabi/libstlport_shared.so

-2.65 MB
Binary file not shown.

0 commit comments

Comments
 (0)