Skip to content

Commit

Permalink
Removing libstlport_shared.so and updating Makefile to pull libstlpor…
Browse files Browse the repository at this point in the history
…t_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.
  • Loading branch information
developernotes committed Nov 22, 2011
1 parent 790f27f commit 01688e4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,6 @@ copy-libs:
${LIBRARY_ROOT}/armeabi && \
cp jni/libs/armeabi/libdatabase_sqlcipher.so \
${LIBRARY_ROOT}/armeabi && \
cp bin/classes/sqlcipher.jar ${LIBRARY_ROOT}
cp bin/classes/sqlcipher.jar ${LIBRARY_ROOT} && \
cp ${ANDROID_NDK_ROOT}/sources/cxx-stl/stlport/libs/armeabi/libstlport_shared.so \
${LIBRARY_ROOT}/armeabi
Binary file removed libs/armeabi/libstlport_shared.so
Binary file not shown.

0 comments on commit 01688e4

Please sign in to comment.