无需植根设备即可卸载/安装系统应用程序 [英] Un-/Install System apps without rooting the device

查看:51
本文介绍了无需植根设备即可卸载/安装系统应用程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有没有办法在不root设备的情况下将apk推送到system/app文件夹?

Is there a way to push apks to the system/app folder without rooting the device?

我找到了几种在有 root 权限的设备上执行此操作的方法,但我正在寻找一种无需先将设备 root 权限即可执行此操作的方法.

I found several ways to do it on rooted devices but I am looking for a way to do it without first rooting the device.

如果有什么不同,我想在三星 S4 上进行,并使用 twrp 作为自定义恢复.

If it makes any difference, I want to do it on a Samsung S4 and use twrp as custom recovery.

PS:不幸的是,首先生根和取消生根也不是一种选择.

PS: First rooting and the unrooting is, unfortunately also not an option.

推荐答案

可以卸载 WITHOUT rooting:

You CAN uninstall WITHOUT rooting:

要卸载应用程序:

adb shell pm uninstall -k --user 0 app--package--name--here

示例,卸载 youtube:

Example, uninstalling youtube:

adb shell pm uninstall -k --user 0 com.google.android.youtube

要按包名称列出应用程序:

To list apps by package names:

adb shell pm list packages

仅列出系统包名称:

adb shell pm list packages -s

以下是您可能想要卸载的系统应用列表:

Here is a list of system apps that you may want to uninstall:

adb shell pm uninstall -k --user 0 com.android.chrome &&
adb shell pm uninstall -k --user 0 com.htc.sense.browser &&
adb shell pm uninstall -k --user 0 com.google.android.googlequicksearchbox &&
adb shell pm uninstall -k --user 0 com.htc.android.voicedictation &&
adb shell pm uninstall -k --user 0 com.htc.sense.socialnetwork.facebook &&
adb shell pm uninstall -k --user 0 com.android.providers.downloads &&
adb shell pm uninstall -k --user 0 com.aiqidi.nemo &&
adb shell pm uninstall -k --user 0  com.htc.sense.socialnetwork.googleplus &&
adb shell pm uninstall -k --user 0 com.htc.android.voicedictation &&
adb shell pm uninstall -k --user 0 com.htc.sense.linkedin &&
adb shell pm uninstall -k --user 0 com.google.android.talk &&
adb shell pm uninstall -k --user 0 com.google.android.apps.books &&
adb shell pm uninstall -k --user 0 com.htc.FMRadioWidget &&
adb shell pm uninstall -k --user 0 com.htc.fmservice &&
adb shell pm uninstall -k --user 0 com.htc.Weather &&
adb shell pm uninstall -k --user 0 com.google.android.play.games &&
adb shell pm uninstall -k --user 0 com.google.android.apps.magazines

这篇关于无需植根设备即可卸载/安装系统应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆