summaryrefslogtreecommitdiffhomepage
path: root/android/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorJanito Vaqueiro Ferreira Filho <janito@mullvad.net>2019-05-28 13:10:47 +0000
committerJanito Vaqueiro Ferreira Filho <janito@mullvad.net>2019-05-29 13:58:25 +0000
commit71f916d9d6439802a01a7cd4abd2a29704623357 (patch)
tree76874a5033a0509bd197a466641747fcfbe4e5f4 /android/src/main/AndroidManifest.xml
parent6b4583d50104d8eb531947d597c12c8572d06a8f (diff)
downloadmullvadvpn-71f916d9d6439802a01a7cd4abd2a29704623357.tar.xz
mullvadvpn-71f916d9d6439802a01a7cd4abd2a29704623357.zip
Register the VPN service
Diffstat (limited to 'android/src/main/AndroidManifest.xml')
-rw-r--r--android/src/main/AndroidManifest.xml9
1 files changed, 9 insertions, 0 deletions
diff --git a/android/src/main/AndroidManifest.xml b/android/src/main/AndroidManifest.xml
index 450c316618..d025f278a5 100644
--- a/android/src/main/AndroidManifest.xml
+++ b/android/src/main/AndroidManifest.xml
@@ -22,5 +22,14 @@
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
+
+ <service
+ android:name=".MullvadVpnService$InnerVpnService"
+ android:permission="android.permission.BIND_VPN_SERVICE"
+ >
+ <intent-filter>
+ <action android:name="android.net.VpnService" />
+ </intent-filter>
+ </service>
</application>
</manifest>