How To Remove Bloatware From Anroid Devices?
How To Remove Bloatware From Android Devices?
In order to remove all bloatware we need
1. ABD (Its a github software to remove bloatware from android)
Download link https://github.com/0x192/universal-android-debloater/releases/download/0.4/uad_gui-windows.exe
2. Open CMD.
Enter command "ADB".
3. Now Connect your phone with USB CABLE.
4. Enter command "ADB devices" (it will list all the connected android devices).
Now You need to know few Commands of ADB
adb shell pm uninstall -k --user 0 package name
Example
adb shell pm uninstall -k --user 0 com.oneplus.screenrecord.black.overlay
adb shell pm uninstall -k --user 0 com.oneplus.wallpaper
adb shell pm uninstall -k --user 0 com.tencent.soter.soterserver
You can also check all the packages already installed so that you can remove/uninstall all the unwanted app/packages.
1. adb shell ↵
2. pm list packages -s ↵ (This command will list all the package installed)
Uninstall apps: adb shell pm uninstall --user 0 <package name>
Reinstall an app: cmd package install-existing --user 0 <package name>
Disable an app: adb shell pm disable-user --user 0 <package name>
THANK YOU FOR READING
Comments
Post a Comment
I GOT YOUR POINT