summaryrefslogtreecommitdiff
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2012-05-12 21:18:37 +0200
committerArne Schwabe <arne@rfc2549.org>2012-05-12 21:18:37 +0200
commit5a65e0c5e80d147909acffa14b04d3c99d48de1a (patch)
tree0987dc015729bc6e3201198102bd44ffcc69664a /AndroidManifest.xml
parent016c2b5baddc374bebb606d3bcbef559c1bc7588 (diff)
Almost working configuration import
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml41
1 files changed, 41 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 8943334a..50d6c9f1 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -39,6 +39,7 @@
<intent-filter>
<action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
@@ -52,6 +53,46 @@
</service>
<activity
+ android:name=".ConfigConverter"
+ android:label="Convert Config File" >
+ <intent-filter android:label="foo" >
+ <action android:name="android.intent.action.MAIN" />
+
+ <category android:name="android.intent.category.DEFAULT" />
+ <category android:name="android.intent.category.BROWSABLE" />
+
+ <data android:mimeType="application/x-openvpn-profile" />
+ </intent-filter>
+ <intent-filter android:label="foo" >
+ <action android:name="android.intent.action.MAIN" />
+
+ <category android:name="android.intent.category.DEFAULT" />
+ <category android:name="android.intent.category.BROWSABLE" />
+
+ <data android:mimeType="application/ovpn" />
+ </intent-filter>
+ <intent-filter android:label="foo" >
+ <action android:name="android.intent.action.VIEW" />
+
+ <category android:name="android.intent.category.BROWSABLE" />
+ <category android:name="android.intent.category.DEFAULT" />
+
+ <data
+ android:pathPattern=".*\\.ovpn"
+ android:scheme="content" />
+ </intent-filter>
+ <intent-filter android:label="foo" >
+ <action android:name="android.intent.action.VIEW" />
+
+ <category android:name="android.intent.category.BROWSABLE" />
+ <category android:name="android.intent.category.DEFAULT" />
+
+ <data
+ android:pathPattern=".*\\.ovpn"
+ android:scheme="file" />
+ </intent-filter>
+ </activity>
+ <activity
android:name=".LaunchVPN"
android:label="@string/vpn_launch_title" >
<intent-filter>