3

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
Varun Bhatia
  • 4,326
  • 32
  • 46

1 Answers1

-1

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
   )