File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,7 @@ if [ ! -d "$LIB" ]; then
49
49
echo ' </manifest>' >> $LIB /lib/src/main/AndroidManifest.xml
50
50
fi
51
51
52
+ # Build 3rdparty libraries
52
53
cd $LIB
53
54
./gradlew assemble
54
55
for build_type in $THIRD_PARTY_DIR /built/cmake/* ; do
@@ -58,6 +59,7 @@ for build_type in $THIRD_PARTY_DIR/built/cmake/*; do
58
59
done
59
60
done
60
61
62
+ # Build pdf2htmlEX
61
63
cd $APP
62
64
./gradlew assemble
63
65
for build_type in $APP /app/.externalNativeBuild/cmake/* ; do
@@ -77,14 +79,13 @@ echo ""
77
79
echo " "
78
80
79
81
# Pack pdf2htmlEX binaries with UPX
80
-
81
82
for build_type in $APP /app/.externalNativeBuild/cmake/* ; do
82
83
build_type_string=$( basename ${build_type} )
83
84
for build_type_and_abi in $build_type /* ; do
84
85
abi_string=$( basename ${build_type_and_abi} )
85
86
86
87
FINAL_BINARY=$build_type_and_abi /built/bin/pdf2htmlEX
87
- upx --ultra-brute --8mib-ram -o $FINAL_BINARY
88
+ upx --ultra-brute --8mib-ram $FINAL_BINARY
88
89
upx -t $FINAL_BINARY
89
90
90
91
FINAL_TAR=$build_type_and_abi /${build_type_string} -${abi_string} -pdf2htmlEX.tar
You can’t perform that action at this time.
0 commit comments