Home | History | Annotate | Download | only in Proxy
      1 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
      2         xmlns:androidprv="http://schemas.android.com/apk/prv/res/android"
      3         package="com.android.proxyhandler"
      4         coreApp="true">
      5 
      6     <uses-permission android:name="android.permission.INTERNET" />
      7 
      8     <application
      9         android:label="@string/app_label"
     10         android:process="com.android.proxyhandler">
     11 
     12         <service android:name=".ProxyService"
     13             android:exported="true">
     14         </service>
     15 
     16     </application>
     17 </manifest>
     18