Uninstall Android Apps
Follow the bellow steps to uninstall pre-installed apps.
Note
Please disable the apps instead of uninstalling. As it may cause system issues.
Steps (Without Root)
Install the USB drivers for your device (Google has a list of some universal USB drivers here)
Download the ADB binary for your particular OS (Windows, Mac, Linux)
Extract the zip file into a folder.
On your phone, go to Settings and tap on About Phone. Find the Build Number and tap on it 7 times to enable Developer Options.
Now enter Developer Options and find USB Debugging and enable it
Plug your phone into the computer and change the mode to "file transfer (MTP)" mode.
On your computer, browse to the directory where you extracted the ADB binary.
Launch a Command Prompt in your ADB folder. For Windows users, hold Shift and Right-clicking then selecting the "open command prompt here" option.
Once you're in the command prompt/terminal, enter the following command:
adb devices
You will see that the system is starting the ADB daemon. If this is your first time running ADB, you will see a prompt on your phone asking you to authorize a connection with the computer. Grant it
Now if you re-run the
adb devices
command, the terminal should print the serial number of your device. If so, then you're ready.Execute the following command:
adb shell
Execute the
pm list packages | grep '<OEM/Carrier/App Name>'
command to find package names.Alternative way:
You can find the package name of an installed system application by installing the App Inspector app on your phone. I prefer doing it this way so you know what the app name is of the application that you are about to uninstall.
Step 1: Tap on "App List"
Step 2: Find the app you want gone. (for example: "Compass")
Step 3: Find the package name under the App Name (for example: "com.huawei.compass")
Execute the command like so:
pm uninstall -k --user 0 <name of package>
command to uninstall a specific system application.
Note
As a word of warning, uninstalling system applications can be dangerous so please know what you're getting rid of before you complete these steps. Failing to do so could result in your phone becoming unusable until you perform a factory reset. By removing any given system application, another system application that may depend on it may also break so be careful what you remove. But if something does go wrong, you can always perform a factory reset.