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 > 6 <application android:label="@string/app_label"> 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> 23