Skip to content

Instantly share code, notes, and snippets.

@senina4
Created August 20, 2024 10:22
Show Gist options
  • Save senina4/56cb88a4ae6df70d4d4a829d40f0a08f to your computer and use it in GitHub Desktop.
Save senina4/56cb88a4ae6df70d4d4a829d40f0a08f to your computer and use it in GitHub Desktop.
How To uninstall unwanted preinstalled android app
  1. Make sure you connect to your device
adb devices
  1. print app
adb shell pm list packages 
  1. Uninstall
adb shell pm uninstall -k --user 0 <package_name>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment