Method 1: With a PC
- Turn on developer options of you android phone and turn on USB Debugging.
- Connect your phone with PC and always allow debugging from this device.
- Install
adb drivers
for your phone in your PC and typeadb devices
- If your device show in your PC then finally run the command.
adb shell pm uninstall --user 0 "app_name_here"
use the
-k
option if you need to keep the user data
Method 2: Without a PC
- Download and install
local adb
app. also known asladb
- Turn on developer options of you android phone and turn on Wireless Debugging.
- Tap on Pair With Code and open the window in split mode.
- Open the
ladb
app and put the port and pairing code in the correct field of theladb
app. - Wait till your phone accept the connection and finally type the following command.
pm uninstall --user 0 "app_name_here"
use the
-k
option if you need to keep the user data
Useful Links: miui bloat remove - install removed apps - Method 2