summaryrefslogtreecommitdiffstats
path: root/core/res
diff options
context:
space:
mode:
authorSvet Ganov <svetoslavganov@google.com>2015-08-20 06:57:31 -0700
committerSvet Ganov <svetoslavganov@google.com>2015-08-20 07:08:26 -0700
commitf1418ae65be77a0d0fac1b616cc9901f9bceffc7 (patch)
treea1c0eb12d0a951f0728c9afa7798559f42412693 /core/res
parentff9912d594bc5cdc10a4a224b9a2296bac50851b (diff)
downloadframeworks_base-f1418ae65be77a0d0fac1b616cc9901f9bceffc7.zip
frameworks_base-f1418ae65be77a0d0fac1b616cc9901f9bceffc7.tar.gz
frameworks_base-f1418ae65be77a0d0fac1b616cc9901f9bceffc7.tar.bz2
Add missing removed permissions to the platform manifest
We need to keep in the manifest as normal hidden permissions all removed dangerous ones to ensure backwards compatibility as apps may be gating operations based on whether they have a removed permission. bug:23377184 Change-Id: I105bd646c4594d85c501f53a10ea393ee50046bc
Diffstat (limited to 'core/res')
-rw-r--r--core/res/AndroidManifest.xml40
1 files changed, 40 insertions, 0 deletions
diff --git a/core/res/AndroidManifest.xml b/core/res/AndroidManifest.xml
index 629d14b..99e55bf 100644
--- a/core/res/AndroidManifest.xml
+++ b/core/res/AndroidManifest.xml
@@ -786,6 +786,46 @@
android:protectionLevel="normal"
android:permissionFlags="hidden"/>
+ <!-- @hide We need to keep this around for backwards compatibility -->
+ <permission android:name="android.permission.WRITE_SMS"
+ android:protectionLevel="normal"
+ android:permissionFlags="hidden"/>
+
+ <!-- @hide We need to keep this around for backwards compatibility -->
+ <permission android:name="com.android.browser.permission.READ_HISTORY_BOOKMARKS"
+ android:protectionLevel="normal"
+ android:permissionFlags="hidden"/>
+
+ <!-- @hide We need to keep this around for backwards compatibility -->
+ <permission android:name="com.android.browser.permission.WRITE_HISTORY_BOOKMARKS"
+ android:protectionLevel="normal"
+ android:permissionFlags="hidden"/>
+
+ <!-- @hide We need to keep this around for backwards compatibility -->
+ <permission android:name="android.permission.AUTHENTICATE_ACCOUNTS"
+ android:protectionLevel="normal"
+ android:permissionFlags="hidden"/>
+
+ <!-- @hide We need to keep this around for backwards compatibility -->
+ <permission android:name="android.permission.MANAGE_ACCOUNTS"
+ android:protectionLevel="normal"
+ android:permissionFlags="hidden"/>
+
+ <!-- @hide We need to keep this around for backwards compatibility -->
+ <permission android:name="android.permission.USE_CREDENTIALS"
+ android:protectionLevel="normal"
+ android:permissionFlags="hidden"/>
+
+ <!-- @hide We need to keep this around for backwards compatibility -->
+ <permission android:name="android.permission.SUBSCRIBED_FEEDS_READ"
+ android:protectionLevel="normal"
+ android:permissionFlags="hidden"/>
+
+ <!-- @hide We need to keep this around for backwards compatibility -->
+ <permission android:name="android.permission.SUBSCRIBED_FEEDS_WRITE"
+ android:protectionLevel="normal"
+ android:permissionFlags="hidden"/>
+
<!-- ====================================================================== -->
<!-- INSTALL PERMISSIONS -->
<!-- ====================================================================== -->