Mostly consists of removing the word "encryption" from most APIs, since we can't actually make promises about the data being encrypted. Bug: 27531029 Change-Id: Iace9d7c4e64716abf86ed11847c40f3947e1d625
20 lines
619 B
XML
20 lines
619 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"
|
|
android:defaultToDeviceProtectedStorage="true"
|
|
android:directBootAware="true">
|
|
|
|
<service android:name=".ProxyService"
|
|
android:exported="true">
|
|
</service>
|
|
|
|
</application>
|
|
</manifest>
|