diff options
author | Dianne Hackborn <hackbod@google.com> | 2011-09-12 12:29:43 -0700 |
---|---|---|
committer | Dianne Hackborn <hackbod@google.com> | 2011-09-12 12:29:43 -0700 |
commit | d2509fd83597595914ef0627685e917380863eb6 (patch) | |
tree | 31ae51c4cb2664615c08ceb99f6363b084199cb4 /core/res | |
parent | d61a3a1bed57fc33fb0fa132521746bb58bba6be (diff) | |
download | frameworks_base-d2509fd83597595914ef0627685e917380863eb6.zip frameworks_base-d2509fd83597595914ef0627685e917380863eb6.tar.gz frameworks_base-d2509fd83597595914ef0627685e917380863eb6.tar.bz2 |
Add boot mode where only "core apps" are started.
A core app is one that has coreApp="true" in its manifest tag.
The system can successfully boot (though a little painfully) with
only framework-res.apk, SettingsProvider.apk, SystemUI.apk,
DefaultContainerService.apk, and Launcher2.apk set as core apps.
Currently this boot mode is always turned off.
Change-Id: Ieaa4a8031c2c391a12996aa8d8b1d65fc2b09d6b
Diffstat (limited to 'core/res')
-rw-r--r-- | core/res/AndroidManifest.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/res/AndroidManifest.xml b/core/res/AndroidManifest.xml index 72863a2..9f2eef5 100644 --- a/core/res/AndroidManifest.xml +++ b/core/res/AndroidManifest.xml @@ -18,7 +18,7 @@ */ --> <manifest xmlns:android="http://schemas.android.com/apk/res/android" - package="android" android:sharedUserId="android.uid.system" + package="android" coreApp="true" android:sharedUserId="android.uid.system" android:sharedUserLabel="@string/android_system_label"> <!-- ================================================ --> |