Remove Android Bloat without Root

Todays movile phones come packed with gigabytes of applications none wants, clog our phones, slow them down and raise network cost.

The problem is, normally you can’t uninstall them.

Here is a trick that lets you still uninstall them:

Install the android platform tools.

Open the command line.

Navigate to the platform-tools folder.

write

abd start-server

adb devices

adb shell

now either you write pm list packages to list all packages, or packages |grep samsung to list all packages with this text in its name or you download the app called Package Name Viewer 2 to see the package name of the apps.

Then type:

pm uninstall -k –user 0 andnowthepackagename

then hit enter to remove the package.