summaryrefslogtreecommitdiffstats
path: root/packages/VpnServices/AndroidManifest.xml
blob: 6092e302c9bfaea04ae6df6682f94557d6ffc37b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="com.android.server.vpn"
        android:sharedUserId="android.uid.system"
        >
    <application android:label="@string/app_label">

        <service android:name=".VpnServiceBinder" android:process=":remote">
            <intent-filter>
                <!-- These are the interfaces supported by the service, which
                     you can bind to. -->
                <action android:name="android.net.vpn.IVpnService" />
                <!-- This is an action code you can use to select the service
                     without explicitly supplying the implementation class. -->
                <action android:name="android.net.vpn.SERVICE" />
            </intent-filter>
        </service>

    </application>

    <uses-permission android:name="android.permission.INTERNET"></uses-permission>
</manifest>