Skip to content

Instantly share code, notes, and snippets.

@HunterMeyer
Last active January 20, 2022 19:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HunterMeyer/b386fdc26863135c861ce644856545fb to your computer and use it in GitHub Desktop.
Save HunterMeyer/b386fdc26863135c861ce644856545fb to your computer and use it in GitHub Desktop.
Delete Android Apps with ADB without Root or Android Studio

Delete Android Apps using ADB

You don't need to root your phone or install Android Studio.

Step 1: Download platform-tools

Download platform-tools for your platform (Mac, Windows, Linux).

Step 2: Uninstall Apps (using Mac)

Enable "USB Debugging" on your phone then connect it via USB to your computer.

Then run the following:

cd /path/to/platform-tools
./adb shell

# list apps (sorting optional)
pm list packages | sort

# uninstall app
pm uninstall --user 0 com.name.of.app
@HunterMeyer
Copy link
Author

If you're on a Samsung tablet, you'll have to enable MTP + ADB USB settings by opening the phone app and dialing, *#0808#. After making the selection, click Ok, and restart your tablet.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment