First, check list all your apps from ADB.
$ adb shell pm list packages -s (enter)
or
$ adb shell su 0 pm list packages
To remove pre-installed apps completely.
$ adb shell pm uninstall -k --user 0 your-package-id (enter)
Source :
https://stackoverflow.com/questions/32611344/is-there-a-way-to-get-list-of-preinstalled-apps-in-android
https://stackoverflow.com/questions/37703415/how-do-i-delete-preinstalled-apps-on-an-android
https://stackoverflow.com/questions/13534935/adb-uninstall-failed/15331420
https://stackoverflow.com/questions/25927124/android-studio-how-to-uninstall-apk-or-execute-adb-command-automatically-bef
Comments
Post a Comment