Joe Onorato | 2314aab | 2010-04-08 16:41:23 -0500 | [diff] [blame] | 1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
Joe Onorato | 79de0c5 | 2010-05-26 17:03:26 -0400 | [diff] [blame] | 2 | package="com.android.systemui" |
Joe Onorato | a2dd4c1 | 2010-06-30 17:02:37 -0400 | [diff] [blame] | 3 | android:sharedUserId="android.uid.system" |
| 4 | android:process="system" |
| 5 | > |
Joe Onorato | 2314aab | 2010-04-08 16:41:23 -0500 | [diff] [blame] | 6 | |
Joe Onorato | 8bc6c51 | 2010-06-04 16:21:12 -0400 | [diff] [blame] | 7 | <uses-permission android:name="android.permission.STATUS_BAR_SERVICE" /> |
Daniel Sandler | d39e388 | 2010-08-31 14:16:13 -0400 | [diff] [blame] | 8 | <uses-permission android:name="android.permission.BLUETOOTH" /> |
| 9 | <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" /> |
Jim Miller | e6ad1a8 | 2010-08-20 19:25:39 -0700 | [diff] [blame] | 10 | <uses-permission android:name="android.permission.GET_TASKS" /> |
Joe Onorato | 8bc6c51 | 2010-06-04 16:21:12 -0400 | [diff] [blame] | 11 | |
Joe Onorato | 2314aab | 2010-04-08 16:41:23 -0500 | [diff] [blame] | 12 | <application |
Dianne Hackborn | 26755a3 | 2010-07-30 17:24:38 -0700 | [diff] [blame] | 13 | android:persistent="true" |
Joe Onorato | 2314aab | 2010-04-08 16:41:23 -0500 | [diff] [blame] | 14 | android:allowClearUserData="false" |
| 15 | android:label="@string/app_label" |
| 16 | android:icon="@drawable/ic_launcher_settings"> |
Joe Onorato | 808182d | 2010-07-09 18:52:06 -0400 | [diff] [blame] | 17 | |
Joe Onorato | f3c3c4f | 2010-10-21 11:09:02 -0400 | [diff] [blame^] | 18 | <!-- Broadcast receiver that gets the broadcast at boot time and starts |
| 19 | up everything else. |
| 20 | TODO: Should have an android:permission attribute |
| 21 | --> |
| 22 | <service android:name="SystemUIService" |
| 23 | android:exported="true" |
Joe Onorato | 2314aab | 2010-04-08 16:41:23 -0500 | [diff] [blame] | 24 | /> |
Joe Onorato | fe4f3ae | 2010-06-04 11:25:26 -0700 | [diff] [blame] | 25 | |
| 26 | <activity android:name=".usb.UsbStorageActivity" |
| 27 | android:excludeFromRecents="true"> |
| 28 | </activity> |
Dianne Hackborn | d39d515 | 2010-10-11 17:14:31 -0700 | [diff] [blame] | 29 | <activity android:name="com.android.internal.app.ExternalMediaFormatActivity" |
| 30 | android:theme="@*android:style/Theme.Dialog.Alert" |
| 31 | android:excludeFromRecents="true"> |
| 32 | </activity> |
Joe Onorato | fe4f3ae | 2010-06-04 11:25:26 -0700 | [diff] [blame] | 33 | |
Joe Onorato | 013cfc1 | 2010-09-08 15:23:18 -0400 | [diff] [blame] | 34 | <activity android:name=".recent.RecentApplicationsActivity" |
Jim Miller | e6ad1a8 | 2010-08-20 19:25:39 -0700 | [diff] [blame] | 35 | android:theme="@android:style/Theme.NoTitleBar" |
| 36 | android:excludeFromRecents="true" |
Jim Miller | c4cf130 | 2010-09-24 18:29:03 -0700 | [diff] [blame] | 37 | android:launchMode="singleInstance" |
Jim Miller | e6ad1a8 | 2010-08-20 19:25:39 -0700 | [diff] [blame] | 38 | android:exported="true"> |
| 39 | </activity> |
| 40 | |
Joe Onorato | 2314aab | 2010-04-08 16:41:23 -0500 | [diff] [blame] | 41 | </application> |
| 42 | </manifest> |