Last active
November 5, 2023 13:03
-
-
Save simonmcd/533b44e6e3e0ac0979d9 to your computer and use it in GitHub Desktop.
Android Grant READ_LOGS Permission
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Open a shell to the connected device. | |
adb shell | |
#Grant the READ_LOGS permission (replace package name with the app you want to have the permission). | |
pm grant org.jtb.alogcat android.permission.READ_LOGS |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
__