summaryrefslogtreecommitdiffstats
path: root/core/res/AndroidManifest.xml
diff options
context:
space:
mode:
authorDan Egnor <egnor@google.com>2010-02-04 20:27:47 -0800
committerDan Egnor <egnor@google.com>2010-02-05 12:31:41 -0800
commit97e44947282b3918ee0bed2d16b33b983f882580 (patch)
treeae30514672b93407b1c9438aa46555363f9f5fc6 /core/res/AndroidManifest.xml
parent9446c5046872e8ae44120d4057ae724875aba1a4 (diff)
downloadframeworks_base-97e44947282b3918ee0bed2d16b33b983f882580.zip
frameworks_base-97e44947282b3918ee0bed2d16b33b983f882580.tar.gz
frameworks_base-97e44947282b3918ee0bed2d16b33b983f882580.tar.bz2
Add an AlarmManager API to set the system time (with the proper permissions).
Diffstat (limited to 'core/res/AndroidManifest.xml')
-rw-r--r--core/res/AndroidManifest.xml6
1 files changed, 6 insertions, 0 deletions
diff --git a/core/res/AndroidManifest.xml b/core/res/AndroidManifest.xml
index 1406b66..713e725 100644
--- a/core/res/AndroidManifest.xml
+++ b/core/res/AndroidManifest.xml
@@ -679,6 +679,12 @@
android:label="@string/permlab_setWallpaperHints"
android:description="@string/permdesc_setWallpaperHints" />
+ <!-- Allows applications to set the system time -->
+ <permission android:name="android.permission.SET_TIME"
+ android:protectionLevel="signatureOrSystem"
+ android:label="@string/permlab_setTime"
+ android:description="@string/permdesc_setTime" />
+
<!-- Allows applications to set the system time zone -->
<permission android:name="android.permission.SET_TIME_ZONE"
android:permissionGroup="android.permission-group.SYSTEM_TOOLS"