summaryrefslogtreecommitdiffstats
path: root/core/res/AndroidManifest.xml
diff options
context:
space:
mode:
authorDaniel Lehmann <lehmannd@google.com>2012-03-12 13:45:19 -0700
committerDaniel Lehmann <lehmannd@google.com>2012-03-12 13:45:19 -0700
commitf06d9497afe01896b52e0cb5e5ff38fd49ef6eef (patch)
tree9184ef3fe1d82abedeff1adea815d5d980fa016c /core/res/AndroidManifest.xml
parenta8c67eb904b7b78856ef58ef6a4ec10e6dccccb2 (diff)
downloadframeworks_base-f06d9497afe01896b52e0cb5e5ff38fd49ef6eef.zip
frameworks_base-f06d9497afe01896b52e0cb5e5ff38fd49ef6eef.tar.gz
frameworks_base-f06d9497afe01896b52e0cb5e5ff38fd49ef6eef.tar.bz2
Introduce READ_CALL_LOG and WRITE_CALL_LOG
Bug:6141864 Change-Id: I66fcab2a35b8c1c73bac7cfffb9f008c82ed51e8
Diffstat (limited to 'core/res/AndroidManifest.xml')
-rw-r--r--core/res/AndroidManifest.xml15
1 files changed, 15 insertions, 0 deletions
diff --git a/core/res/AndroidManifest.xml b/core/res/AndroidManifest.xml
index 17d2212..b6f599a 100644
--- a/core/res/AndroidManifest.xml
+++ b/core/res/AndroidManifest.xml
@@ -248,6 +248,21 @@
android:label="@string/permlab_writeContacts"
android:description="@string/permdesc_writeContacts" />
+ <!-- Allows an application to read the user's call log. -->
+ <permission android:name="android.permission.READ_CALL_LOG"
+ android:permissionGroup="android.permission-group.PERSONAL_INFO"
+ android:protectionLevel="dangerous"
+ android:label="@string/permlab_readCallLog"
+ android:description="@string/permdesc_readCallLog" />
+
+ <!-- Allows an application to write (but not read) the user's
+ contacts data. -->
+ <permission android:name="android.permission.WRITE_CALL_LOG"
+ android:permissionGroup="android.permission-group.PERSONAL_INFO"
+ android:protectionLevel="dangerous"
+ android:label="@string/permlab_writeCallLog"
+ android:description="@string/permdesc_writeCallLog" />
+
<!-- Allows an application to read the user's personal profile data. -->
<permission android:name="android.permission.READ_PROFILE"