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" /> |
| 8 | |
Joe Onorato | 2314aab | 2010-04-08 16:41:23 -0500 | [diff] [blame] | 9 | <application |
Dianne Hackborn | 26755a3 | 2010-07-30 17:24:38 -0700 | [diff] [blame] | 10 | android:persistent="true" |
Joe Onorato | 2314aab | 2010-04-08 16:41:23 -0500 | [diff] [blame] | 11 | android:allowClearUserData="false" |
| 12 | android:label="@string/app_label" |
| 13 | android:icon="@drawable/ic_launcher_settings"> |
| 14 | |
Joe Onorato | 2314aab | 2010-04-08 16:41:23 -0500 | [diff] [blame] | 15 | <service |
Joe Onorato | 1c95ecb | 2010-06-28 17:19:12 -0400 | [diff] [blame] | 16 | android:name=".statusbar.StatusBarService" |
Joe Onorato | 2314aab | 2010-04-08 16:41:23 -0500 | [diff] [blame] | 17 | android:exported="false" |
| 18 | /> |
Joe Onorato | fe4f3ae | 2010-06-04 11:25:26 -0700 | [diff] [blame] | 19 | |
| 20 | <activity android:name=".usb.UsbStorageActivity" |
| 21 | android:excludeFromRecents="true"> |
| 22 | </activity> |
| 23 | |
Joe Onorato | 2314aab | 2010-04-08 16:41:23 -0500 | [diff] [blame] | 24 | </application> |
| 25 | </manifest> |