Nicolas Prevot 114e8994a8 Marking the Settings ContentProvider as singleUser
There is only one instance of the Settings ContentProvider, running in the user 0.
So it should be marked as singleUser.

BUG: 17133716
Change-Id: I426667ddbc8e682e7ea81f04633c0ad4f42782cb
2014-08-22 12:12:29 +01:00

23 lines
947 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">
<!-- todo add: android:neverEncrypt="true" -->
<provider android:name="SettingsProvider" android:authorities="settings"
android:multiprocess="false"
android:exported="true"
android:writePermission="android.permission.WRITE_SETTINGS"
android:singleUser="true"
android:initOrder="100" />
</application>
</manifest>