Install required Tools:
For Mac
brew install android-platform-tools
brew install bundletool
Sideload APK App on your Android device
adb devices
Shows the list of devices connected to your laptop.
adb install <FILENAME.APK>
Installs the App binary (APK only) on your connected device(s)
adb logcat
streams the device log in your terminal windows
adb logcat -c
clears the device log
adb logcat > logfile.txt
pips the device log into a file called logfile.txt
Sideload AAB App on your device
brew install bundletool
bundletool build-apks --bundle=<APPNAME.aab> --output=<APPNAME.apks>
bundletool install-apks --apks=<APPNAME.apks>
Comments
0 comments
Article is closed for comments.