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
| restart adbd with root permissions | |
| >> adb root | |
| adb re write permission | |
| >> adb remount | |
| app installation - push a single package to the device and install it | |
| >> adb install test.apk | |
| app reinstall and as debuggable | |
| >> adb install -r -d test.apk | |
| app install as a system apk - push app inside priv-app folder | |
| >> adb push test.apk /system/priv-app/TestApp |