#TOPICS:
1. Remove System APP Without root your Android2. Remove System APP With PC
3. Disable System APP completely.
#Supported Devices : Any Android Devices [Most Of them]
#Requirements:
1. Computer2. Windows or MAC or Linux OS
3. Android Mobile
4. ADB Tool
5. Android Device Driver
#STEPS:
1. Connect Your PC with internet
2. Install Adb tool on your os. Download ADB
3. Enable developer options and turn on usb debugging
3. Connect Your Android Phone with PC
4. RUN ADB Tool by open command prompt > type
adb devices
if the device is detected by the computer then the name will appear, if it is written unauthorized then press allow on the popup on android screen
3. To access the ADB Shell
adb shell
4. To Uninstall any System or User apps
pm uninstall -k --user 0 $packagename
example, this will uninstall google duo
Code:
pm uninstall -k --user 0 com.google.android.apps.tachyon
5. How to Get all installed applications list by Command?
pm list packages
or,
pm list packages -f
Post a Comment