07/08/2020
Remove unwanted System Apps without Root in Android using adb command
First thing first : Enable developer option in your device and then enable usb debugging from device settings and connect usb cable to your computer where adb tool is installed.
Step - 1 :
In Windows, navigate to the adb directory and launch the command prompt in that folder. For Linux, just open the Terminal.
Type the following command to start adb and verify that the phone is connected.
adb devices
Step -2 :
Start the adb shell.
adb shell
Step -3 :
List all the packages installed in the phone.
pm list packages
Step -4 :
Find the name of the app you want to uninstall. The name is the entry after Package:. For example, the package name for the Google Contact app is com.google.android.contacts,
Type the following command to uninstall the app.
pm uninstall -k --user 0 package-name
You should see the word โSuccessโ if the uninstallation is successful.