45576ccd76
In a future version of Android, the default value for <provider android:exported> will change from true to false. Explicitly set android:exported="true" Bug: 3306452 Change-Id: Iffe4dca4fefc92bb9f89698f149a87c16a7ce3c5
22 lines
905 B
XML
22 lines
905 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="@drawable/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:initOrder="100" />
|
|
</application>
|
|
</manifest>
|