blob: 3f5b69d84ae3752d94a06c267a8f1bda50fc4ec6 [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
5 <application
6 android:allowClearUserData="false"
7 android:label="@string/app_label"
8 android:icon="@drawable/ic_launcher_settings">
9
10 <receiver
Joe Onorato79de0c52010-05-26 17:03:26 -040011 android:name=".statusbar.StatusBarStarter"
Joe Onorato2314aab2010-04-08 16:41:23 -050012 >
13 <intent-filter>
14 <action android:name="com.android.internal.policy.statusbar.START" />
15 </intent-filter>
16 </receiver>
17 <service
Joe Onorato79de0c52010-05-26 17:03:26 -040018 android:name=".statusbar.PhoneStatusBarService"
Joe Onorato2314aab2010-04-08 16:41:23 -050019 android:exported="false"
20 />
21 </application>
22</manifest>