File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change 6
6
git submodule update --init
7
7
android update project -p .
8
8
9
- all : clean build-external build-jni build-java copy-libs
9
+ all : build-external build-jni build-java copy-libs
10
10
11
11
build-external :
12
12
cd external/ && \
13
13
make -f Android.mk build-local-hack && \
14
- ndk-build clean && \
15
14
ndk-build && \
16
- make -f Android.mk copy-libs-hack
15
+ make -f Android.mk copy-libs-hack
17
16
18
17
build-jni :
19
18
cd jni/ && \
20
- ndk-build clean && \
21
19
ndk-build
22
20
23
21
build-java :
24
- ant clean && \
25
22
ant release && \
26
23
cd bin/classes && \
27
24
jar -cvf sqlcipher.jar .
28
25
29
26
clean :
27
+ ant clean
28
+ cd external/ && ndk-build clean
29
+ cd jni/ && ndk-build clean
30
30
-rm ${LIBRARY_ROOT} /armeabi/libsqlcipher_android.so
31
31
-rm ${LIBRARY_ROOT} /armeabi/libdatabase_sqlcipher.so
32
32
-rm ${LIBRARY_ROOT} /sqlcipher.jar
33
33
34
34
copy-libs :
35
35
cp external/libs/armeabi/libsqlcipher_android.so \
36
36
${LIBRARY_ROOT} /armeabi && \
37
- cp jni/libs/armeabi/libdatabase_sqlcipher.so \
38
- ${LIBRARY_ROOT}/armeabi && \
39
- cp bin/classes/sqlcipher.jar ${LIBRARY_ROOT} && \
40
- cp ${ANDROID_NDK_ROOT}/sources/cxx-stl/stlport/libs/armeabi/libstlport_shared.so \
37
+ cp jni/libs/armeabi/libdatabase_sqlcipher.so \
38
+ ${LIBRARY_ROOT} /armeabi && \
39
+ cp bin/classes/sqlcipher.jar ${LIBRARY_ROOT} && \
40
+ cp ${ANDROID_NDK_ROOT} /sources/cxx-stl/stlport/libs/armeabi/libstlport_shared.so \
41
41
${LIBRARY_ROOT} /armeabi
42
42
43
43
copy-libs-dist :
You can’t perform that action at this time.
0 commit comments