Last active
January 2, 2021 17:40
-
-
Save JoachimR/7eb760d3a5f616873699018cfbf45a6a to your computer and use it in GitHub Desktop.
create android release on terminal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
adb uninstall com.your.package && | |
./gradlew assembleRelease && | |
cp app/build/outputs/apk/release/app-release.apk /Users/userName/Desktop/. && | |
adb install -r /Users/userName/Desktop/app-release.apk && | |
adb shell am start -n com.your.package/com.your.package.SplashScreenActivity |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment