0
点赞
收藏
分享

微信扫一扫

MFC 使用 Imm 类库实现输入法修改输入模式的技术文档

残北 2024-06-08 阅读 33
adbandroid

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 条评论