android – 从shell禁用DeviceAdmin?

前端之家收集整理的这篇文章主要介绍了android – 从shell禁用DeviceAdmin?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试从 shell卸载应用程序,但是此应用程序作为设备管理员运行,因此shell> adb uninstall com.example.test无效.

如何从shell禁用设备管理员

解决方法

通常,通过“设备管理员”屏幕撤消管理访问权限,然后卸载应用程序.在随后的示例中,我将假设airdroid(com.sand.airdroid)已配置为设备管理员,并将被卸载.因此,要定制此示例,请使用您自己的应用程序名称替换com.sand.airdroid的实例.

干净的方法

要访问设备管理员,请导航:设置→安全性→设备管理员.然后,取消选中要取消设置管理访问权限的应用程序.

也可以使用shell打开这个活动:

adb shell am start -S "com.android.settings/.Settings\$DeviceAdminSettingsActivity"

完成此操作后,可以正常卸载活动:

adb uninstall com.sand.airdroid

蛮力方法(需要root)

确实存在蛮力方法.它涉及搜索/ system和/ data文件系统中的所有文件,并删除每个找到的项目.免责声明:谨慎使用(首先在模拟器上测试).

adb shell

# Switch to root
su -

# Search for all installed files using the fully-qualified app name
find /system /data -name \*com.sand.airdroid\*

…出现一个文件列表(包括目录) – 对于每个文件,通过在其前面添加一个rm -f来删除它:

rm -r /data/media/0/Android/data/com.sand.airdroid
rm -r /data/data/com.sand.airdroid
rm -r /data/app-lib/com.sand.airdroid-1
rm -r /data/app/com.sand.airdroid-1.apk
rm -r /data/dalvik-cache/data@app@com.sand.airdroid-1.apk@classes.dex

# Run the find command again to ensure nothing was missed
find /system /data -name \*com.sand.airdroid\* 

# exit root
exit
# exit Android shell
exit

要允许Android清理其文件,请重新启动设备.

adb reboot

设备重新启动后,可以使用uninstall命令卸载应用程序以完成清理.

adb uninstall com.sand.airdroid
原文链接:https://www.f2er.com/android/315777.html

猜你在找的Android相关文章