Android: register intent to receive video files

This commit is contained in:
Neeraj Gupta 2021-09-20 18:06:36 +05:30
parent 2474130147
commit c35bb66743
No known key found for this signature in database
GPG key ID: 3C5A1684DC1729E1

View file

@ -32,6 +32,18 @@
<data android:mimeType="image/*" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="video/*" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND_MULTIPLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="video/*" />
</intent-filter>
</activity>
<!-- Don't delete the meta-data below.
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->