aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tunnel/src/main/AndroidManifest.xml
blob: dc0d6c7f0e2975c5d32dd6eddcef5528c214b33a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!--
  ~ Copyright © 2017-2021 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">

    <application>
        <service
            android:name="com.wireguard.android.backend.GoBackend$VpnService"
            android:permission="android.permission.BIND_VPN_SERVICE"
            android:exported="true">
            <intent-filter>
                <action android:name="android.net.VpnService" />
            </intent-filter>
        </service>
    </application>
</manifest>