blob: d8e05bb1dda8ce883aaf65b0555faccd92cf67df [file] [log] [blame]
Joe Onorato2314aab2010-04-08 16:41:23 -05001<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Joe Onorato79de0c52010-05-26 17:03:26 -04002 package="com.android.systemui"
Joe Onorato2314aab2010-04-08 16:41:23 -05003 android:sharedUserId="android.uid.system">
4
Joe Onorato8bc6c512010-06-04 16:21:12 -04005 <uses-permission android:name="android.permission.STATUS_BAR_SERVICE" />
6
Joe Onorato2314aab2010-04-08 16:41:23 -05007 <application
8 android:allowClearUserData="false"
9 android:label="@string/app_label"
10 android:icon="@drawable/ic_launcher_settings">
11
12 <receiver
Joe Onorato79de0c52010-05-26 17:03:26 -040013 android:name=".statusbar.StatusBarStarter"
Joe Onorato2314aab2010-04-08 16:41:23 -050014 >
15 <intent-filter>
16 <action android:name="com.android.internal.policy.statusbar.START" />
17 </intent-filter>
18 </receiver>
19 <service
Joe Onorato79de0c52010-05-26 17:03:26 -040020 android:name=".statusbar.PhoneStatusBarService"
Joe Onorato2314aab2010-04-08 16:41:23 -050021 android:exported="false"
22 />
Joe Onoratofe4f3ae2010-06-04 11:25:26 -070023
24 <activity android:name=".usb.UsbStorageActivity"
25 android:excludeFromRecents="true">
26 </activity>
27
Joe Onorato2314aab2010-04-08 16:41:23 -050028 </application>
29</manifest>