blob: e48b2da6ea467e19eba30ceeb7db971e4a11f255 [file] [log] [blame]
Hung-ying Tyanf94b6442009-06-08 13:27:11 +08001<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="com.android.server.vpn"
4 android:sharedUserId="android.uid.system"
5 >
6 <application android:label="VPN Services">
7
8 <service android:name=".VpnServiceBinder" android:process=":remote">
9 <intent-filter>
10 <!-- These are the interfaces supported by the service, which
11 you can bind to. -->
12 <action android:name="android.net.vpn.IVpnService" />
13 <!-- This is an action code you can use to select the service
14 without explicitly supplying the implementation class. -->
15 <action android:name="android.net.vpn.SERVICE" />
16 </intent-filter>
17 </service>
18
19 </application>
20
21 <uses-permission android:name="android.permission.INTERNET"></uses-permission>
22</manifest>