Ask Your Question
4

How can the PACKAGE_USAGE_STATS permission be granted via adb?

asked 2023-07-15 02:09:10 +0000

huitzilopochtli gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2023-07-15 02:15:02 +0000

ladyg gravatar image

To grant the PACKAGEUSAGESTATS permission via adb, follow these steps:

  1. Connect your device to your computer via USB and enable USB debugging on the device.
  2. Open a terminal or command prompt on your computer and navigate to the Android SDK platform-tools directory.
  3. Enter the following command to check if the permission is already granted:

    adb shell dumpsys package domains | grep -i 'packageName='
    

    Replace "packageName" with the package name for which you want to check the permission.

  4. If the permission is not granted, enter the following command to grant the permission:

    adb shell pm grant packageName android.permission.PACKAGE_USAGE_STATS
    

    Replace "packageName" with the name of the package for which you want to grant the permission.

  5. Verify that the permission has been granted by entering the first command again. The package should now show as having the permission granted.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-07-15 02:09:10 +0000

Seen: 10 times

Last updated: Jul 15 '23