Flutter-permission-handler: How to take Storage/files permission for android 11?

Created on 13 Mar 2021  路  3Comments  路  Source: Baseflow/flutter-permission-handler

馃挰 Questions and Help

Some reason its not asking file access permission in android 11.
in AndroidManifest.xml

<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
      <uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE"/>

And this way I am asking for permission !

   Map<Permission, PermissionStatus> statuses = await [
      Permission.mediaLibrary,
      Permission.storage,
      Permission.photos,
    ].request();

Most helpful comment

If this is not fixed, google play reported that it will restrict apps shortly.

All 3 comments

duplicate of #491.

Support for MANAGE_EXTERNAL_STORAGE has not yet been implemented.

When you guy's are planing to implement it ?

If this is not fixed, google play reported that it will restrict apps shortly.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

yethael picture yethael  路  3Comments

jaleelmeemo picture jaleelmeemo  路  5Comments

VOIDCRUSHER picture VOIDCRUSHER  路  3Comments

klaszlo8207 picture klaszlo8207  路  5Comments

shinriyo picture shinriyo  路  5Comments