Hung-ying Tyan | f94b644 | 2009-06-08 13:27:11 +0800 | [diff] [blame] | 1 | <?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 Fischer | f204ab3 | 2009-06-17 15:17:29 -0700 | [diff] [blame] | 6 | <application android:label="@string/app_label"> |
Hung-ying Tyan | f94b644 | 2009-06-08 13:27:11 +0800 | [diff] [blame] | 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> |