summaryrefslogtreecommitdiff
path: root/main/src/skeleton/java/de/blinkt/openvpn
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2020-05-27 13:39:55 +0200
committerArne Schwabe <arne@rfc2549.org>2020-05-27 17:01:23 +0200
commit00b10ed048cc1f6490e7ca3e0530dd4471ca5a40 (patch)
tree0ffe2af2125fc0a05b05d8e3f55ab40a950724a6 /main/src/skeleton/java/de/blinkt/openvpn
parent45d8e94d3b8421018fa86a8ca1439210fedbd8de (diff)
Implement internal webview for authenticating when OPEN_URL is used
Diffstat (limited to 'main/src/skeleton/java/de/blinkt/openvpn')
-rw-r--r--main/src/skeleton/java/de/blinkt/openvpn/core/VariantConfig.java16
1 files changed, 16 insertions, 0 deletions
diff --git a/main/src/skeleton/java/de/blinkt/openvpn/core/VariantConfig.java b/main/src/skeleton/java/de/blinkt/openvpn/core/VariantConfig.java
new file mode 100644
index 00000000..bbebc2af
--- /dev/null
+++ b/main/src/skeleton/java/de/blinkt/openvpn/core/VariantConfig.java
@@ -0,0 +1,16 @@
+/*
+ * Copyright (c) 2012-2020 Arne Schwabe
+ * Distributed under the GNU GPL v2 with additional terms. For full terms see the file doc/LICENSE.txt
+ */
+
+package de.blinkt.openvpn.core;
+
+import android.content.Context;
+import android.content.Intent;
+
+public class VariantConfig {
+ static Intent getOpenUrlIntent(Context c) {
+ return new Intent(Intent.ACTION_VIEW);
+ }
+
+}