23 lines
945 B
XML
23 lines
945 B
XML
|
<?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>
|