- Open
Settings > About Phone - Tap 7 times
MIUI Buildto becomeDeveloper - Go to
Advanced Options > Devloper Options - Enable
USB Debugging - Now connect the mobile to the system
- Open mobile and Accept
Enable USB Debugging Mode
- In Arch install adb-tools by the following commands:
$ sudo pacman -Syu
$ sudo pacman -S android-tools
- In Ubuntu,
$ sudo apt update && sudo apt upgrade
$ sudo apt install android-tools-adb
- For windows,
- Download the adb files and extract it to
C:\likeC:\adb - Open the command prompt in the ADB binary's directory
- For mac OS,
- Download the adb files and extract it to desired folder
- Open terminal and
cdto the extracted ADB folder - It is better to connect USB mode in mobile as "File Transfer (MTP)" in mac OS
- Make sure mobile is connected and USB debigging enabled
- In Linux Systems type the following command and go to step 3
$ sudo adb start-server
- In mac and windows, in the ADB binary folder, execute the following command:
adb devices (This will list the attached device.)
adb shell (It will show like $pine:/)
- Now open the phone and go to
Settings > Apps - Click the app you want to uninstall (Say for example MI Browser) and go to
Manage appsclick the three dots on the right side (or options, depending upon your model) and note theAPK name. It should be likecom.miui.mibrowser - Now in computer, type the following commands in terminal
pm uninstall --user 0 app.package.name
for Mi Browser
pm uninstall --ser 0 com.miui.mibrowser
Once executed it should show Success message. And you can now see the app is disappered in your phone.