|
@@ -18,6 +18,20 @@
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
<data android:scheme="ente"/>
|
|
|
</intent-filter>
|
|
|
+
|
|
|
+ <!--Filter to support sharing images into our app-->
|
|
|
+ <intent-filter android:label="Upload to Ente">>
|
|
|
+ <action android:name="android.intent.action.SEND" />
|
|
|
+ <category android:name="android.intent.category.DEFAULT" />
|
|
|
+ <data android:mimeType="image/*" />
|
|
|
+ </intent-filter>
|
|
|
+
|
|
|
+ <intent-filter android:label="Upload to Ente">
|
|
|
+ <action android:name="android.intent.action.SEND_MULTIPLE" />
|
|
|
+ <category android:name="android.intent.category.DEFAULT" />
|
|
|
+ <data android:mimeType="image/*" />
|
|
|
+ </intent-filter>
|
|
|
+
|
|
|
</activity>
|
|
|
<!-- Don't delete the meta-data below.
|
|
|
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
|