summaryrefslogtreecommitdiff
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2013-01-04 20:54:50 +0100
committerArne Schwabe <arne@rfc2549.org>2013-01-04 20:54:50 +0100
commitd89b7ab6b1ad44812d358819b9965b48f23031fc (patch)
treeeac76b4b7ceea0550899f7cab3bee787724636f7 /AndroidManifest.xml
parent182242f017c752240f501be3f5027460365bf71f (diff)
Some more changes making external API possible
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml13
1 files changed, 11 insertions, 2 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 2bd0be0e..07fbde8a 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -68,13 +68,22 @@
<action android:name="android.net.VpnService" />
</intent-filter>
</service>
- <service android:name=".api.ExternalOpenVPNService"
- android:permission="de.blinkt.openvpn.REMOTE_API">
+ <service
+ android:name=".api.ExternalOpenVPNService"
+ android:permission="de.blinkt.openvpn.REMOTE_API" >
<intent-filter>
<action android:name="de.blinkt.openvpn.api.IOpenVPNAPIService" />
</intent-filter>
</service>
+ <activity
+ android:name=".api.GrantPermissionsActivity"
+ android:permission="de.blinkt.openvpn.REMOTE_API" >
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ </intent-filter>
+ </activity>
+
<receiver android:name=".OnBootReceiver" >
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />