I am trying to delete preinstalled applications on my HTC phone. I have tried to root my phone but was not very successful. Ty
Asked
Active
Viewed 7,477 times
1
-
Did you read the following ? [android bloatware removal](http://www.howtogeek.com/115533/how-to-disable-or-uninstall-android-bloatware/) – Rudy Vissers Jun 08 '16 at 13:18
-
@Rudy Vissers Disabling is not the same as deleting. The other option on the page is rooting which Mona clearly stated was not succesful. – Gerben Versluis May 27 '21 at 13:28
2 Answers
5
Disabling is one way. For example Motorola enables them every update.
You can also remove them completely using adb:
- Install adb if you do not already have it, https://developer.android.com/studio/command-line/adb
- Enable developer mode, usually by going to settings > system > about phone > and repeatedly clicking build number
- Configure your phone in debug mode, usually settings > systems > developer options > USB debugging
- Start a console and put adb in your path
- List your packages using: adb shell pm list package -f
- Remove the package using: adb shell pm uninstall --user 0
Example:
adb shell pm uninstall --user 0 com.microsoft.office.outlook
Removes Outlook
adb shell pm uninstall --user 0 com.linkedin.android
Removes LinkedIn
I'm not sure if updates reinstall applications.

Gerben Versluis
- 547
- 6
- 7