Skip to content

Commit

Permalink
deckerst#165 resolve editor apps that are not visible in launcher
Browse files Browse the repository at this point in the history
  • Loading branch information
deckerst committed Mar 13, 2023
1 parent 7db3160 commit d81a03a
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,16 @@ This change eventually prevents building the app with Flutter v3.3.3.
<intent>
<action android:name="android.intent.action.MAIN" />
</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,
if appropriate intents are not declared, cf https://pub.dev/packages/url_launcher#configuration=
Expand Down

0 comments on commit d81a03a

Please sign in to comment.