Fix install.sh script for new react-native output

Now they just put it in app-release.apk i guess
This commit is contained in:
Brandon Presley 2023-07-15 15:02:13 +12:00
parent 89606b9d21
commit c3a3e33e25
1 changed files with 2 additions and 2 deletions

View File

@ -2,5 +2,5 @@
set -ex
cd android
[ "$1" != "--nobuild" ] && ./gradlew assembleRelease
adb -d install app/build/outputs/apk/release/app-arm64-v8a-release.apk
[ "$1" != "--nobuild" ] && ./gradlew assembleRelease -PreactNativeArchitectures=arm64-v8a
adb -d install app/build/outputs/apk/release/app-release.apk