This file contains 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
==> Install app | |
adb install Myapp.apk | |
adb -d install Myapp.apk // -d : directs command to the connected USB device | |
adb -e install Myapp.apk // -e : directs command to the running emulator | |
adb -s install Myapp.apk // -s : serial number | |
adb -p install Myapp.apk // -p : product name or path | |
---------------------------------------------------------------------------------------------------------- | |
==> Uninstall app |