blob: 6092e302c9bfaea04ae6df6682f94557d6ffc37b [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 >
Eric Fischerf204ab32009-06-17 15:17:29 -07006 <application android:label="@string/app_label">
Hung-ying Tyanf94b6442009-06-08 13:27:11 +08007
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>