How to request Allow management of all files permission in Flutter Android 11 (R)

Viewed 1625

I'm using Permission Handler package i.e. https://pub.dev/packages/permission_handler

and I requested Permission.storage but it's allowing me only allow access to media only I want Allow management of all files by default...

enter image description here

1 Answers

Use

   Permission.manageExternalStorage   

instead of

   Permission.storage

and also add following permission to menefiest under manifest tag.

 <uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE"
    tools:ignore="ScopedStorage" />

I am using following package for requesting permission.

https://pub.dev/packages/permission_handler

Related