adb操作安卓系统权限

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


待补充。。。

相关推荐
c***21298 小时前
Springboot3学习(5、Druid使用及配置)
android·学习
修炼者8 小时前
【Android 进阶】别再强转 Context 了!手把手教你优雅解耦 View 与 Activity
android·android studio
x***01068 小时前
SpringSecurity+jwt实现权限认证功能
android·前端·后端
程序员江同学9 小时前
线下活动|2025 Kotlin 中文开发者大会北京分会场
android·kotlin
李坤林9 小时前
Android Vulkan 开启VK_GOOGLE_DISPLAY_TIMING 后,一个vsync 会释放两个imageBuffer现象分析
android·vulkan
Jerry10 小时前
Compose 状态思维
android
k***459910 小时前
MySQL----case的用法
android·数据库·mysql
r***869811 小时前
Plugin ‘mysql_native_password‘ is not loaded`
android·数据库·mysql
v***598312 小时前
MySQL-mysql zip安装包配置教程
android·mysql·adb
不用89k12 小时前
Android无法区分USB摄像头是哪一个
android