我试图从我的华硕Zenphone激光器2中删除Facebook和Messenger应用程序。
不幸的是,在这两种情况下,我似乎无法找到完全从设备中删除它们的选项。我已禁用它们,但App管理屏幕现在显示以下内容:
如何完全删除/卸载它们?
我试图从我的华硕Zenphone激光器2中删除Facebook和Messenger应用程序。
不幸的是,在这两种情况下,我似乎无法找到完全从设备中删除它们的选项。我已禁用它们,但App管理屏幕现在显示以下内容:
如何完全删除/卸载它们?
I am trying to remove the Facebook and Messenger apps from my Asus Zenphone Laser 2.
Unfortunately, in both cases, I seem to be unable to find the option to fully delete them from the device. I have disabled them, but the app management screen now shows the following:
How can I fully delete/uninstall them?
您无法从没有root的固件中删除那些应用,但您可以卸载当前用户或使用adb的任何用户的系统应用程序。
假设安装了adb,如果不是,请使用简单的互联网搜索来设置路径。
步骤:
获取要删除的应用程序的包名称。
打开终端/命令提示
确保通过运行 adb devices -l
运行 adb shell pm uninstall --user 0 <package name>
完成
封装名称
facebook: com.facebook.katana
messenger: com.facebook.orca
adb shell pm uninstall --user 0 com.google.android.inputmethod.latin
,我从我的设备中卸载Google键盘获取当前用户的设备
卸载之前和之后(单击图像以放大)
You can't remove those apps from firmware without root but you can uninstall any system app for current user or any user using ADB.
Assuming ADB is installed and PATH is set if not you can do it with a simple internet search.
Steps:
Obtain package name for app you want to remove.
Open Terminal/Command Prompt
Make sure device is connected by running adb devices -l
Run adb shell pm uninstall --user 0 <package name>
Done
Package Name
Facebook: com.facebook.katana
Messenger: com.facebook.orca
After some discussion in the comments I'm adding an example here that worked for me. I have uninstall Google Keyboard from my device for current user using command adb shell pm uninstall --user 0 com.google.android.inputmethod.latin
Before and after uninstalling (click images to enlarge)
您无法卸载它们是系统应用程序。但是,如果您可以root设备,那么您可以永久卸载它们和所有其他填充行权。 您可以通过安装Magisk( magisk -xda-portal ) 记得在安装之前彻底阅读帖子!
You cannot uninstall them as they are system apps. But if you can root your device then you can permanently uninstall them and all other bloatwares. You can root your device by installing Magisk (Magisk-XDA-portal) remember to read the post thoroughly before installing it!
© 2022 it.wenda123.org All Rights Reserved. 问答之家 版权所有