瀏覽代碼

Android: Register intent to receive images

Neeraj Gupta 4 年之前
父節點
當前提交
9e2c555dbc
共有 1 個文件被更改,包括 14 次插入0 次删除
  1. 14 0
      android/app/src/main/AndroidManifest.xml

+ 14 - 0
android/app/src/main/AndroidManifest.xml

@@ -18,6 +18,20 @@
                 <category android:name="android.intent.category.BROWSABLE" />
                 <category android:name="android.intent.category.BROWSABLE" />
                 <data android:scheme="ente"/>
                 <data android:scheme="ente"/>
             </intent-filter>
             </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>
         </activity>
         <!-- Don't delete the meta-data below.
         <!-- Don't delete the meta-data below.
              This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
              This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->