The PAC Local Proxy priviously caught proxy broadcasts and started itself when needed. Now it is bound by the system the same way the pac processing service is started. Bug: 10425091 Change-Id: I746daa21645a11aa18ef464f00c8cb5536d8c86f
18 lines
525 B
XML
18 lines
525 B
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:androidprv="http://schemas.android.com/apk/prv/res/android"
|
|
package="com.android.proxyhandler"
|
|
coreApp="true">
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<application
|
|
android:label="@string/app_label"
|
|
android:process="com.android.proxyhandler">
|
|
|
|
<service android:name=".ProxyService"
|
|
android:exported="true">
|
|
</service>
|
|
|
|
</application>
|
|
</manifest>
|