diff options
author | Iván Ávalos <avalos@disroot.org> | 2023-05-22 09:00:45 -0600 |
---|---|---|
committer | Iván Ávalos <avalos@disroot.org> | 2023-05-22 09:00:45 -0600 |
commit | f0e45a5a510d2b4693580179645bd0bb0b352f86 (patch) | |
tree | 1de8c7235e5dba68898a1ac33f5d420a18ac2fff /android/app/src/main | |
parent | 786267d0ebb337ad5b4f1e528fdd4c23731e0606 (diff) | |
download | linkchat-f0e45a5a510d2b4693580179645bd0bb0b352f86.tar.gz linkchat-f0e45a5a510d2b4693580179645bd0bb0b352f86.tar.bz2 linkchat-f0e45a5a510d2b4693580179645bd0bb0b352f86.zip |
Soporte y restricción para links
Diffstat (limited to 'android/app/src/main')
-rw-r--r-- | android/app/src/main/AndroidManifest.xml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index e9957a0..be5d92b 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -30,4 +30,12 @@ android:name="flutterEmbedding" android:value="2" /> </application> + + <queries> + <intent> + <action android:name="android.intent.action.VIEW" /> + <category android:name="android.intent.category.BROWSABLE" /> + <data android:scheme="https" /> + </intent> + </queries> </manifest> |