summaryrefslogtreecommitdiff
path: root/main/src/ui/AndroidManifest.xml
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2021-08-24 19:25:59 +0200
committerArne Schwabe <arne@rfc2549.org>2021-08-24 19:25:59 +0200
commit09c5cb0a0d33c58897026b7b4b1901c1ddc088f1 (patch)
tree2a881c94bd517b145178a1bd08f71d69914115d4 /main/src/ui/AndroidManifest.xml
parentd1eb15b8dd6b4cb599ea7a084e61e24dfdbc74f4 (diff)
Implement support of openvpn://import-profile/ support
For details about the protocol see https://github.com/OpenVPN/openvpn3/blob/master/doc/webauth.md
Diffstat (limited to 'main/src/ui/AndroidManifest.xml')
-rw-r--r--main/src/ui/AndroidManifest.xml7
1 files changed, 7 insertions, 0 deletions
diff --git a/main/src/ui/AndroidManifest.xml b/main/src/ui/AndroidManifest.xml
index a9dfa380..0caccd5d 100644
--- a/main/src/ui/AndroidManifest.xml
+++ b/main/src/ui/AndroidManifest.xml
@@ -31,6 +31,13 @@
<intent-filter>
<action android:name="android.service.quicksettings.action.QS_TILE_PREFERENCES" />
</intent-filter>
+ <intent-filter>
+ <action android:name="android.intent.action.VIEW" />
+ <category android:name="android.intent.category.DEFAULT" />
+ <category android:name="android.intent.category.BROWSABLE" />
+ <data android:scheme="openvpn" />
+ <data android:host="import-profile" />
+ </intent-filter>
</activity>
<activity android:name=".activities.InternalWebView" />
<activity