mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-27 14:59:29 +01:00
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
589833c0e2
commit
bcebca01e2
@ -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…
Reference in New Issue
Block a user