0

I am encountering a problem with the image picker its not asking for permission every time I try to access the gallery. I have SDK 33 API Flutter 3.0.5 • channel stable Dart SDK version: 2.17.6 I tried to run flutter clean but still the same. the only thing I see in the android manifest is this uses-permission android:name="android.permission.INTERNET".

molbdnilo
  • 64,751
  • 3
  • 43
  • 82

1 Answers1

1

Image picker doest need those permissions now

It is no longer required to add android:requestLegacyExternalStorage="true" as an attribute to the tag in AndroidManifest.xml, as image_picker has been updated to make use of scoped storage

You can get the info from the read me section of image picker

Kaushik Chandru
  • 15,510
  • 2
  • 12
  • 30