huangcm
2024-10-12 d3acb07ae52cd1e07661d853cb07895d324a847f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<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"
        android:defaultToDeviceProtectedStorage="true"
        android:directBootAware="true">
 
        <service android:name=".ProxyService"
            android:exported="true">
        </service>
 
    </application>
</manifest>