We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e373d77 commit ba130b7Copy full SHA for ba130b7
build_android.sh
@@ -83,10 +83,9 @@ for build_type in $APP/app/.externalNativeBuild/cmake/*; do
83
for build_type_and_abi in $build_type/*; do
84
abi_string=$(basename ${build_type_and_abi})
85
86
- COMPILED_BINARY=$build_type_and_abi/built/bin/pdf2htmlEX
87
- PACKED_BINARY=$build_type_and_abi/built/bin/pdf2htmlEX-compressed
88
- upx --ultra-brute --8mib-ram -o $PACKED_BINARY $COMPILED_BINARY
89
- upx -t $PACKED_BINARY
+ FINAL_BINARY=$build_type_and_abi/built/bin/pdf2htmlEX
+ upx --ultra-brute --8mib-ram -o $FINAL_BINARY
+ upx -t $FINAL_BINARY
90
91
FINAL_TAR=$build_type_and_abi/${build_type_string}-${abi_string}-pdf2htmlEX.tar
92
if [ -f "${FINAL_TAR}" ]; then
0 commit comments