adb权限管理操作

  • adb 授予某个应用的权限某个权限
adb shell pm grant 应用包名  权限名
例如:授予demo应用写入日历的权限
adb shell pm grant com.test.demo android.permission.WRITE_CALENDAR
  • adb 撤销某个应用的权限某个权限
adb shell pm revoke 应用包名  权限名
adb shell pm revoke com.test.demo android.permission.WRITE_CALENDAR
  • dump appops
adb shell dumpsys appops
  • 授予所有运行时权限以进行测试
adb shell install -g PATH_TO_APK_FILE

待补充。。。

点赞(0) 打赏

评论列表 共有 0 条评论

暂无评论

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部