Issue
I can delete apps (that I code myself and install through the SDK) using this command:
adb uninstall com.company.apppackage
How do I uninstall this through the command line using adb
if I do not know the package name?
For example, if an app shows up in the Android main menu as "My Application", how can I delete it if I do not know it's package name?
Or alternatively, is there a way to somehow know an apps internal package name?
Solution
try:
adb root
Then enter adb shell
adb shell
Find out your apps package name:
pm list packages | grep "your app name/something related to your app name"
Then use:
adb uninstall
OR
pm uninstall
Answered By - Rilwan
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.