3d5bb944fa
Bug: 136675067 Test: Builds successfully Change-Id: Ie6c38a4ccdca03842c8698dc1865dd542bf9054a
26 lines
1.1 KiB
XML
26 lines
1.1 KiB
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:restoreAnyVersion="true"
|
|
android:icon="@mipmap/ic_launcher_settings"
|
|
android:defaultToDeviceProtectedStorage="true"
|
|
android:forceQueryable="true"
|
|
android:directBootAware="true">
|
|
|
|
<provider android:name="SettingsProvider"
|
|
android:authorities="settings"
|
|
android:multiprocess="false"
|
|
android:exported="true"
|
|
android:singleUser="true"
|
|
android:initOrder="100"
|
|
android:visibleToInstantApps="true" />
|
|
</application>
|
|
</manifest>
|