How to send broadcast with permission from command line

前端 未结 3 1412
情深已故
情深已故 2021-02-10 05:38

I have a broadcast receiver in a app which uses my permission com.myexample.permission.MY_PERMISSION.

I am able to send the broadcast using

se

3条回答
  •  -上瘾入骨i
    2021-02-10 06:13

    If my answer here is not what you are looking for, try pm grant PACKAGE PERMISSION:

    1. add "development" level when define com.myexample.permission.MY_PERMISSION in your app, like android:protectionLevel="signature|development"
    2. grant this permission to "shell" in adb shell:
      pm grant com.android.shell com.myexample.permission.MY_PERMISSION

提交回复
热议问题