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

746

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

Share:
746
Vaibhav Pallod
Author by

Vaibhav Pallod

I'm Android developer since 1 yr , I have developed 3 apps and deployed them to playstore as well as i have completed Intenship at Keeto company

Updated on December 30, 2022

Comments

  • Vaibhav Pallod
    Vaibhav Pallod over 1 year

    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