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
23 lines
930 B
XML
23 lines
930 B
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.android.providers.settings"
|
|
coreApp="true"
|
|
android:sharedUserId="android.uid.system">
|
|
|
|
<application android:allowClearUserData="false"
|
|
android:label="@string/app_label"
|
|
android:process="system"
|
|
android:backupAgent="SettingsBackupAgent"
|
|
android:killAfterRestore="false"
|
|
android:icon="@mipmap/ic_launcher_settings"
|
|
android:defaultToDeviceProtectedStorage="true"
|
|
android:directBootAware="true">
|
|
|
|
<provider android:name="SettingsProvider"
|
|
android:authorities="settings"
|
|
android:multiprocess="false"
|
|
android:exported="true"
|
|
android:singleUser="true"
|
|
android:initOrder="100" />
|
|
</application>
|
|
</manifest>
|