Fix image_picker for Android >= Q
Per https://pub.dev/packages/image_picker, the image picker plugin needs legacy external storage permission on Android Q and above for now; it does not yet support the new permission model. Fixes #306. Signed-off-by: Michel Alexandre Salim <michel@michel-slm.name>
This commit is contained in:
parent
e9c81f2301
commit
be828d2c1e
1 changed files with 2 additions and 1 deletions
|
|
@ -13,7 +13,8 @@
|
|||
<application
|
||||
android:name=".Application"
|
||||
android:label="FluffyChat"
|
||||
android:icon="@mipmap/ic_launcher">
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
android:requestLegacyExternalStorage="true">
|
||||
<activity
|
||||
android:name=".MainActivity"
|
||||
android:launchMode="singleTask"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue