Home

Published

- 1 min read

uninstall app via adb

img of uninstall app via adb

The solution for this is noted below

uninstall app via adb

Solution

   //access adb shell to avoid repeating adb shell in all commands as repeated below
adb shell 
//list installed packages
adb shell pm list packages
// find package
adb shell pm list packages | grep '<OEM/Carrier/App Name>'
// unstall 
adb shell pm uninstall -k --user 0 NameOfPackage
//or as a single command
adb shell pm uninstall --user 0 <package name>

Try other methods by searching on the site. That is if this doesn’t work