2d4b6ad9d4
made public, and wouldn't be used by any third party applications, and no longer does anything regardless). Also remove the WRITE_GSERVICES permission from the SettingsProvider package's manifest (the declaration there was redundant with the one in the core manifest, where all the other settings-related permissions live -- no other core package includes its own permission definitions).
15 lines
644 B
XML
15 lines
644 B
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.android.providers.settings"
|
|
android:sharedUserId="android.uid.system">
|
|
|
|
<application android:allowClearUserData="false"
|
|
android:label="Settings Storage"
|
|
android:icon="@drawable/ic_launcher_settings">
|
|
|
|
<provider android:name="SettingsProvider" android:authorities="settings"
|
|
android:process="system" android:multiprocess="false"
|
|
android:writePermission="android.permission.WRITE_SETTINGS"
|
|
android:initOrder="100" />
|
|
</application>
|
|
</manifest>
|