diff options
author | Parménides GV <parmegv@sdf.org> | 2014-06-13 11:31:36 +0200 |
---|---|---|
committer | Parménides GV <parmegv@sdf.org> | 2014-06-13 11:31:36 +0200 |
commit | 36247e71df88fa13c6c5a887de3b11d9a883615f (patch) | |
tree | 099535ca64dc0b0779d23159b3323dc1f65828b4 /app/src/main/AndroidManifest.xml | |
parent | 3532eff1b86f6b5ae4268393c4b5c61350c89faf (diff) |
Disconnect works, eip status receiver.
Disconnect uses the ics-openvpn activity, and the dialog prompting the
user to confirm the disconnection is only shown when eip is connected or
is trying to connect.
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r-- | app/src/main/AndroidManifest.xml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 51ce3e80..860f0e1e 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -53,6 +53,15 @@ </intent-filter> </receiver> + <receiver + android:name="se.leap.bitmaskclient.EipStatusReceiver" + android:enabled="true" + android:permission="android.permission.ACCESS_NETWORK_STATE" > + <intent-filter> + <action android:name="de.blinkt.openvpn.VPN_STATUS" /> + </intent-filter> + </receiver> + <activity android:theme="@android:style/Theme.DeviceDefault.Light.Dialog" android:name="de.blinkt.openvpn.activities.DisconnectVPN" /> |