浏览代码

Allow URLs to be shared to the app

Jakob Külzer 3 年之前
父节点
当前提交
bb47e7e4be
共有 1 个文件被更改,包括 8 次插入0 次删除
  1. 8 0
      app/src/main/AndroidManifest.xml

+ 8 - 0
app/src/main/AndroidManifest.xml

@@ -56,6 +56,14 @@
 
                 <data android:mimeType="text/plain" />
             </intent-filter>
+            <intent-filter>
+                <action android:name="android.intent.action.SEND" />
+
+                <category android:name="android.intent.category.DEFAULT" />
+
+                <data android:scheme="http" />
+                <data android:scheme="https" />
+            </intent-filter>
         </activity>
     </application>