ADB Shell Command to Grant Storage Permissions on Android 11

Viewed 572

The following shell command doesn't work on Android 11 devices. Can someone help me with an alternative?

adb shell pm grant com.adobe.reader android.permission.WRITE_EXTERNAL_STORAGE
1 Answers

Kotlin working Code

Dependencies to be added in build.gradle

androidTestImplementation "androidx.test:rules:1.3.0"

Code :

@get:Rule
   val permissionRule: GrantPermissionRule = GrantPermissionRule.grant(
    CAMERA, CALL_PHONE, READ_EXTERNAL_STORAGE,WRITE_EXTERNAL_STORAGE
   )
Related