How to uninstall carrier/OEM bloatware on android without root access

  First, turn on developer mode on your android. If you don't know how to do it then just search on google or youtube. Then turn on USB Debugging from the developer option. 

Now go here and install ADB on your pc according to your operating system. 

After that connect your mobile through a USB cable to your computer and turn on File transfer (MTP) mode. 

Now go to the location where you have downloaded the ADB file and open your terminal there. After that type adb devices command and hit enter. Linux/Mac users type ./adb devices You will see your device in the terminal. Now you will get a notification on your phone, simply click OK.

How to uninstall bloatware

First type the below command
adb shell
Link or Mac users type ./adb shell

Now use the below command to uninstall the app
pm uninstall -k --user 0 NameOfPackage

How to find the package name

Type the below command and hit enter to find all the package name
pm list packages | grep '<OEM/Carrier/App Name>'

Also you can install this app to see all the package name.

How to re-install an uninstalled app

Type the below command and hit enter.
./adb shell

Now type pm install-existing PackageName in the Terminal window. You’ll need to replace the word ‘PackageName’ with the name of the actual app package you want to reinstall. Then, hit Enter to execute the command.


Post Comment

Comments