From 4fab4e5972f4ca05d5b5f03112727ed4ac9c2909 Mon Sep 17 00:00:00 2001 From: euxane Date: Wed, 18 Sep 2024 23:41:13 +0200 Subject: manifest: register intent queries for opening web and dir links --- app/src/main/AndroidManifest.xml | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'app/src') 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 @@ </application> + <queries> + <intent> + <action android:name="android.intent.action.VIEW" /> + <data android:scheme="https" /> + </intent> + <intent> + <action android:name="android.intent.action.VIEW" /> + <data android:scheme="content" /> + </intent> + </queries> + </manifest> -- cgit v1.2.3