summaryrefslogtreecommitdiffstats
path: root/core/res/AndroidManifest.xml
diff options
context:
space:
mode:
authorDaniel Lehmann <lehmannd@google.com>2012-03-13 12:17:45 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-03-13 12:17:45 -0700
commit53567a756e34706edbeae7217ad4205c55bb76b6 (patch)
tree2e568f3269ae10d2801e5c116c132c091de571ef /core/res/AndroidManifest.xml
parent278836e22c14299669aabafc636faab534faeba9 (diff)
parentf06d9497afe01896b52e0cb5e5ff38fd49ef6eef (diff)
downloadframeworks_base-53567a756e34706edbeae7217ad4205c55bb76b6.zip
frameworks_base-53567a756e34706edbeae7217ad4205c55bb76b6.tar.gz
frameworks_base-53567a756e34706edbeae7217ad4205c55bb76b6.tar.bz2
Merge "Introduce READ_CALL_LOG and WRITE_CALL_LOG"
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 8f03fe0..d1e3642 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"