]> git.proxmox.com Git - flutter/pve_flutter_frontend.git/commitdiff
android: record query-intent for https URLs to allow opening docs/proxmox.com
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Thu, 9 Dec 2021 08:40:50 +0000 (09:40 +0100)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Thu, 9 Dec 2021 08:40:55 +0000 (09:40 +0100)
required since Android 11 / API level 30 and we recently jumped from
28 to 31.

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
android/app/src/main/AndroidManifest.xml

index 089feaa68be4b64431a7e0050e23c58de8e56da7..c04e7c8b5edaa9fa8326c935a3d2dc5983fd4f80 100644 (file)
             android:resource="@xml/provider_paths"/>
         </provider>
     </application>
+
+    <queries>
+        <intent> <!-- allow us to open https URLs (docs, proxmox.com, ...) -->
+            <action android:name="android.intent.action.VIEW" />
+            <data android:scheme="https" />
+        </intent>
+    </queries>
 </manifest>