Un-/install System Apps Without Rooting The Device
Is there a way to push apks to the system/app folder without rooting the device? I found several ways to do it on rooted devices but I am looking for a way to do it without first r
Solution 1:
You CAN uninstall WITHOUT rooting:
To uninstall an app:
adb shell pm uninstall -k --user0 app--package--name--here
Example, uninstalling youtube:
adb shell pm uninstall -k --user0 com.google.android.youtube
To list apps by package names:
adb shell pm list packages
To list only system package names:
adb shell pm list packages -s
Here is a list of system apps that you may want to uninstall:
adb shell pm uninstall -k --user0 com.android.chrome &&
adb shell pm uninstall -k --user0 com.htc.sense.browser &&
adb shell pm uninstall -k --user0 com.google.android.googlequicksearchbox &&
adb shell pm uninstall -k --user0 com.htc.android.voicedictation &&
adb shell pm uninstall -k --user0 com.htc.sense.socialnetwork.facebook &&
adb shell pm uninstall -k --user0 com.android.providers.downloads &&
adb shell pm uninstall -k --user0 com.aiqidi.nemo &&
adb shell pm uninstall -k --user0 com.htc.sense.socialnetwork.googleplus &&
adb shell pm uninstall -k --user0 com.htc.android.voicedictation &&
adb shell pm uninstall -k --user0 com.htc.sense.linkedin &&
adb shell pm uninstall -k --user0 com.google.android.talk &&
adb shell pm uninstall -k --user0 com.google.android.apps.books &&
adb shell pm uninstall -k --user0 com.htc.FMRadioWidget &&
adb shell pm uninstall -k --user0 com.htc.fmservice &&
adb shell pm uninstall -k --user0 com.htc.Weather &&
adb shell pm uninstall -k --user0 com.google.android.play.games &&
adb shell pm uninstall -k --user0 com.google.android.apps.magazines
Solution 2:
Choose one of the following apps :
- NoBloat (Free/Non Free)
- System App Remover (Free/Non Free)
- App Eater
- Root App Deleter
- DeBloater
Post a Comment for "Un-/install System Apps Without Rooting The Device"