Skip to content

Instantly share code, notes, and snippets.

@yclim95
Last active August 2, 2023 03:19
Show Gist options
  • Save yclim95/76388eeed8cca6be6b57c467aa2772d4 to your computer and use it in GitHub Desktop.
Save yclim95/76388eeed8cca6be6b57c467aa2772d4 to your computer and use it in GitHub Desktop.
Android remove pre-installed apps without ROOTING

How to Uninstall Carrier/OEM Bloatware Without Root Access

  1. How to uninstall(https://www.xda-developers.com/uninstall-carrier-oem-bloatware-without-root-access/)
  2. Install OEM USB Drive (https://developer.android.com/studio/run/oem-usb)
  3. Install ADB Binary (https://www.xda-developers.com/google-releases-separate-adb-and-fastboot-binary-downloads/)
  4. App Inspector (https://play.google.com/store/apps/details?id=com.ubqsoft.sec01)

Command

adb devices
adb shell
pm list packages | grep '<OEM/Carrier/App Name>
pm uninstall -k --user 0 <name of package>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment