#165 resolve editor apps that are not visible in launcher

This commit is contained in:
Thibault Deckers 2023-03-13 11:42:52 +01:00
parent 7db3160e1a
commit d81a03a420

View file

@ -67,6 +67,16 @@ This change eventually prevents building the app with Flutter v3.3.3.
<intent> <intent>
<action android:name="android.intent.action.MAIN" /> <action android:name="android.intent.action.MAIN" />
</intent> </intent>
<!-- necessary to resolve image editor apps that are not visible in the launcher -->
<intent>
<action android:name="android.intent.action.EDIT" />
<data android:mimeType="image/*" />
</intent>
<!-- necessary to resolve video editor apps that are not visible in the launcher -->
<intent>
<action android:name="android.intent.action.EDIT" />
<data android:mimeType="video/*" />
</intent>
<!-- <!--
from Android 11, `url_launcher` method `canLaunchUrl()` will return false, from Android 11, `url_launcher` method `canLaunchUrl()` will return false,
if appropriate intents are not declared, cf https://pub.dev/packages/url_launcher#configuration= if appropriate intents are not declared, cf https://pub.dev/packages/url_launcher#configuration=