grant/revoke permission with adb

2019-07-14 17:04发布

The Android documentation contains the following description of the adb grant and adb revoke commands.

Use the adb tool to manage permissions from the command line: List permissions and status by group: $ adb shell pm list permissions -d -g Grant or revoke one or more permissions: $ adb shell pm [grant|revoke] <permission-name> ...Analyze your app for services that use permissions.

i run this command, without any error message:

abd shell pm [grant|revoke] com.my.app android.permission.ACCESS_FINE_LOCATION

If i open settings -> apps -> myapp -> Permissions. i dont see any changes...

How i know if my adb command works? Why there is no any change in the settings of app?

1条回答
干净又极端
2楼-- · 2019-07-14 17:18

You're executing the following:

abd shell pm [grant|revoke] com.my.app android.permission.ACCESS_FINE_LOCATION

It should be adb, for Android Debug Bridge. i.e.

adb shell pm [grant|revoke] com.my.app android.permission.ACCESS_FINE_LOCATION
查看更多
登录 后发表回答