diff options
author | Dan Egnor <egnor@google.com> | 2009-06-15 14:46:00 -0700 |
---|---|---|
committer | Dan Egnor <egnor@google.com> | 2009-06-15 16:29:20 -0700 |
commit | 2d4b6ad9d4c7e3e2dbb6a127f37271686253d71f (patch) | |
tree | b66b8c97936d53c970775aaf134b4f0eeab1a9ca /packages | |
parent | 5570f2f24a74a1f16c781722731ba39f2907cbb3 (diff) | |
download | frameworks_base-2d4b6ad9d4c7e3e2dbb6a127f37271686253d71f.zip frameworks_base-2d4b6ad9d4c7e3e2dbb6a127f37271686253d71f.tar.gz frameworks_base-2d4b6ad9d4c7e3e2dbb6a127f37271686253d71f.tar.bz2 |
Remove obsolete FOTA_UPDATE permission (which should never have been
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).
Diffstat (limited to 'packages')
-rw-r--r-- | packages/SettingsProvider/AndroidManifest.xml | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/packages/SettingsProvider/AndroidManifest.xml b/packages/SettingsProvider/AndroidManifest.xml index 4abc337..16c66a6 100644 --- a/packages/SettingsProvider/AndroidManifest.xml +++ b/packages/SettingsProvider/AndroidManifest.xml @@ -2,12 +2,6 @@ package="com.android.providers.settings" android:sharedUserId="android.uid.system"> - <!-- Permission to write Gservices in SettingsProvider --> - <permission android:name="android.permission.WRITE_GSERVICES" - android:label="@string/permlab_writeGservices" - android:description="@string/permdesc_writeGservices" - android:protectionLevel="signature" /> - <application android:allowClearUserData="false" android:label="Settings Storage" android:icon="@drawable/ic_launcher_settings"> |