We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95b3560 commit ba77aa2Copy full SHA for ba77aa2
1 file changed
build.sh
@@ -98,6 +98,12 @@ check_ndk() {
98
done
99
}
100
101
+delete_core_packages() {
102
+ for f in ../dist/core* ; do
103
+ rm "$f"
104
+ done
105
+}
106
+
107
build_core() {
108
app_root=$(readlink -f ../)
109
@@ -207,13 +213,19 @@ pack_core() {
207
213
208
214
209
215
build_cores() {
210
- for api in 9 16; do
216
217
+ delete_core_packages
218
219
+ for api in 16 9; do
211
220
build_core
212
221
for abi in armeabi armeabi-v7a; do
- copy_java_libs
222
pack_core
223
224
225
226
+ for abi in armeabi armeabi-v7a; do
227
+ copy_java_libs
228
229
230
231
0 commit comments