diff options
author | Arne Schwabe <arne@rfc2549.org> | 2013-07-23 13:07:29 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2013-07-23 13:07:29 +0200 |
commit | 383c519222d1e7e9d76bd520d3334a15348c324e (patch) | |
tree | dbba7a29f714460a30fbfa4791426ae1747ddb0e /AndroidManifest.xml | |
parent | ffd764ba71946386bb5c195a9b88098ae8b3dfc0 (diff) |
Require permission when calling activities too...
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r-- | AndroidManifest.xml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index abf2f3b3..31a5de36 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -16,6 +16,8 @@ android:minSdkVersion="14" android:targetSdkVersion="17" /> + <!-- Copy the <permission> block to your app when using the REMOTE API. Otherwise OpenVPN for + Android needs to be installed first --> <permission android:name="de.blinkt.openvpn.REMOTE_API" android:description="@string/permission_description" @@ -65,12 +67,14 @@ </service> <activity + android:permission="de.blinkt.openvpn.REMOTE_API" android:name=".api.GrantPermissionsActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> </intent-filter> </activity> <activity + android:permission="de.blinkt.openvpn.REMOTE_API" android:name=".api.ConfirmDialog" > <intent-filter> <action android:name="android.intent.action.MAIN" /> |