2020-03-09 14:30:14 +01:00
|
|
|
<!--
|
|
|
|
~ Copyright © 2017-2019 WireGuard LLC. All Rights Reserved.
|
|
|
|
~ SPDX-License-Identifier: Apache-2.0
|
|
|
|
-->
|
|
|
|
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="com.wireguard.android.tunnel">
|
2020-03-30 21:57:43 +02:00
|
|
|
|
2020-03-09 14:30:14 +01:00
|
|
|
<application>
|
2020-03-30 21:57:43 +02:00
|
|
|
<service
|
2020-03-09 14:30:14 +01:00
|
|
|
android:name="com.wireguard.android.backend.GoBackend$VpnService"
|
|
|
|
android:permission="android.permission.BIND_VPN_SERVICE">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.net.VpnService" />
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
|
|
|
</application>
|
|
|
|
</manifest>
|