Explorar o código

Allow URLs to be shared to the app

Jakob Külzer %!s(int64=3) %!d(string=hai) anos
pai
achega
bb47e7e4be
Modificáronse 1 ficheiros con 8 adicións e 0 borrados
  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>