File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -11,11 +11,14 @@ all: clean build-external build-jni build-java copy-libs
11
11
build-external :
12
12
cd external/ && \
13
13
make -f Android.mk build-local-hack && \
14
+ ndk-build clean && \
14
15
ndk-build && \
15
16
make -f Android.mk copy-libs-hack
16
17
17
18
build-jni :
18
- cd jni/ && ndk-build
19
+ cd jni/ && \
20
+ ndk-build clean && \
21
+ ndk-build
19
22
20
23
build-java :
21
24
ant clean && \
@@ -36,3 +39,7 @@ copy-libs:
36
39
cp bin/classes/sqlcipher.jar ${LIBRARY_ROOT} && \
37
40
cp ${ANDROID_NDK_ROOT}/sources/cxx-stl/stlport/libs/armeabi/libstlport_shared.so \
38
41
${LIBRARY_ROOT}/armeabi
42
+
43
+ copy-libs-dist :
44
+ cp ${LIBRARY_ROOT} /* .jar dist/SQLCipherForAndroid-SDK/libs/ && \
45
+ cp ${LIBRARY_ROOT} /armeabi/* .so dist/SQLCipherForAndroid-SDK/libs/armeabi/
You can’t perform that action at this time.
0 commit comments