diff options
author | Doug Zongker <dougz@android.com> | 2009-11-19 12:49:53 -0800 |
---|---|---|
committer | Doug Zongker <dougz@android.com> | 2009-11-19 17:18:31 -0800 |
commit | 50a21f4d3b70360b36acad20e234c380654fd59f (patch) | |
tree | ae5a32323d740cf4af6c03a573fd6c96ffa27b86 /core/res/AndroidManifest.xml | |
parent | 793810f68fcf1ace817f6ebcb42a6adb13c28582 (diff) | |
download | frameworks_base-50a21f4d3b70360b36acad20e234c380654fd59f.zip frameworks_base-50a21f4d3b70360b36acad20e234c380654fd59f.tar.gz frameworks_base-50a21f4d3b70360b36acad20e234c380654fd59f.tar.bz2 |
add reboot() method to PowerManager
In order to unbundle System Update, we need some to expose in the SDK
some way to reboot the device into recovery. Add a reboot() method to
PowerManager, protected by the android.permission.REBOOT permission.
Diffstat (limited to 'core/res/AndroidManifest.xml')
-rw-r--r-- | core/res/AndroidManifest.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/res/AndroidManifest.xml b/core/res/AndroidManifest.xml index 22716b8..8047436 100644 --- a/core/res/AndroidManifest.xml +++ b/core/res/AndroidManifest.xml @@ -943,7 +943,7 @@ <permission android:name="android.permission.DELETE_CACHE_FILES" android:label="@string/permlab_deleteCacheFiles" android:description="@string/permdesc_deleteCacheFiles" - android:protectionLevel="signature" /> + android:protectionLevel="signatureOrSystem" /> <!-- Allows an application to delete packages. --> <permission android:name="android.permission.DELETE_PACKAGES" @@ -981,7 +981,7 @@ <permission android:name="android.permission.REBOOT" android:label="@string/permlab_reboot" android:description="@string/permdesc_reboot" - android:protectionLevel="signature" /> + android:protectionLevel="signatureOrSystem" /> <!-- Allows low-level access to power management --> <permission android:name="android.permission.DEVICE_POWER" |