diff options
Diffstat (limited to 'remoteExample/src/main/AndroidManifest.xml')
-rw-r--r-- | remoteExample/src/main/AndroidManifest.xml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/remoteExample/src/main/AndroidManifest.xml b/remoteExample/src/main/AndroidManifest.xml new file mode 100644 index 00000000..1d76db58 --- /dev/null +++ b/remoteExample/src/main/AndroidManifest.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="de.blinkt.openvpn.remote" > + + <permission + android:name="de.blinkt.openvpn.REMOTE_API" + android:description="@string/permission_description" + android:label="Control OpenVPN" + android:permissionGroup="android.permission-group.NETWORK" + android:protectionLevel="dangerous" /> + + <uses-permission android:name="android.permission.INTERNET" /> + <uses-permission android:name="de.blinkt.openvpn.REMOTE_API" /> + + <application + android:allowBackup="true" + android:icon="@drawable/ic_launcher" + android:label="@string/app_name" + android:theme="@style/AppTheme" > + <activity + android:name="de.blinkt.openvpn.remote.MainActivity" + android:label="@string/app_name" > + <intent-filter> + <action android:name="android.intent.action.MAIN" /> + + <category android:name="android.intent.category.LAUNCHER" /> + </intent-filter> + </activity> + </application> + +</manifest> |