diff options
author | euxane | 2024-09-18 23:41:13 +0200 |
---|---|---|
committer | euxane | 2024-09-18 23:41:13 +0200 |
commit | 4fab4e5972f4ca05d5b5f03112727ed4ac9c2909 (patch) | |
tree | b7abddef5ccb5ed073ca23f4e3de964fbbb15843 | |
parent | 9c18fbdcb677deed0ff956782eeb637d0bef3275 (diff) | |
download | tincapp-4fab4e5972f4ca05d5b5f03112727ed4ac9c2909.tar.gz |
manifest: register intent queries for opening web and dir links
-rw-r--r-- | app/src/main/AndroidManifest.xml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index e2ec0fc..450b8ac 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml | |||
@@ -101,4 +101,15 @@ | |||
101 | 101 | ||
102 | </application> | 102 | </application> |
103 | 103 | ||
104 | <queries> | ||
105 | <intent> | ||
106 | <action android:name="android.intent.action.VIEW" /> | ||
107 | <data android:scheme="https" /> | ||
108 | </intent> | ||
109 | <intent> | ||
110 | <action android:name="android.intent.action.VIEW" /> | ||
111 | <data android:scheme="content" /> | ||
112 | </intent> | ||
113 | </queries> | ||
114 | |||
104 | </manifest> | 115 | </manifest> |