From a530b563b91213b83f2f94bf29fc1ed504b2dca6 Mon Sep 17 00:00:00 2001 From: Brandon Presley Date: Fri, 30 Sep 2022 17:13:04 +1300 Subject: [PATCH] Add -d flag to install.sh Installs it on usb debug device instead of assuming only one device is plugged in. --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index afceefc..c18d02f 100755 --- a/install.sh +++ b/install.sh @@ -1,4 +1,4 @@ #!/bin/sh cd android && ./gradlew assembleRelease -adb install android/app/build/outputs/apk/release/app-arm64-v8a-release.apk +adb -d install android/app/build/outputs/apk/release/app-arm64-v8a-release.apk