summaryrefslogtreecommitdiffstats
path: root/packages/services/Proxy/AndroidManifest.xml
blob: 02475c0f7d9e7a4a6ff21733e0ffe6d0289599f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<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:persistent="true"
        android:label="@string/app_label"
        android:process="com.android.proxyhandler">

        <service android:name=".ProxyService"
            android:exported="true">
        </service>

        <receiver android:name=".ProxyServiceReceiver">

            <intent-filter>
                <action android:name="android.intent.action.PROXY_CHANGE" />
            </intent-filter>
        </receiver>

    </application>
</manifest>