diff options
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" /> |