1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#!/bin/bash cd iGetAndroid if [ ! -f local.properties ]; then echo sdk.dir=${SDK} > local.properties echo ndk.dir=${NDK} >> local.properties fi if [ "$1" = "DEBUG" ]; then ./gradlew assembleDebug else ./gradlew assembleRelease fi echo "Apks are inside iGetAndroid/app/build/outputs/apk" cd ..