adb误操作后AdminComponentInfofcomrosandhizuku comrosandhizukuserverDhizuk uDAReceiver is not owned by uid11300解决方法
当出现"ComponentInfofcom.rosan.dhizuku/ com.rosan.dhizuku.server.DhizukuDAReceiver] is not owned by uid11300"错误时,可能是由于未正确配置权限导致的。解决方法如下:
- 使用以下命令查看目标应用的包名:
adb shell pm list packages
- 根据第一步的结果,使用以下命令获取目标应用的UID:
adb shell dumpsys package <package_name> | grep userId=
- 使用以下命令更改目标应用的UID:
adb shell chown <uid> <package_name>
替换上述命令中的<uid>为第二步中获取的UID,<package_name>为目标应用的包名。
- 重新启动设备或应用,然后再次尝试操作。
如果上述方法无效,可能是因为设备已经被破坏或存在其他问题。在这种情况下,建议重新恢复设备或联系设备制造商进行支持。
原文地址: http://www.cveoy.top/t/topic/hIff 著作权归作者所有。请勿转载和采集!