2010-04-08 16:41:23 -05:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2010-05-26 17:03:26 -04:00
|
|
|
package="com.android.systemui"
|
2010-06-30 17:02:37 -04:00
|
|
|
android:sharedUserId="android.uid.system"
|
|
|
|
android:process="system"
|
|
|
|
>
|
2010-04-08 16:41:23 -05:00
|
|
|
|
2010-06-04 16:21:12 -04:00
|
|
|
<uses-permission android:name="android.permission.STATUS_BAR_SERVICE" />
|
|
|
|
|
2010-04-08 16:41:23 -05:00
|
|
|
<application
|
|
|
|
android:allowClearUserData="false"
|
|
|
|
android:label="@string/app_label"
|
|
|
|
android:icon="@drawable/ic_launcher_settings">
|
|
|
|
|
|
|
|
<service
|
2010-06-28 17:19:12 -04:00
|
|
|
android:name=".statusbar.StatusBarService"
|
2010-04-08 16:41:23 -05:00
|
|
|
android:exported="false"
|
|
|
|
/>
|
2010-06-04 11:25:26 -07:00
|
|
|
|
|
|
|
<activity android:name=".usb.UsbStorageActivity"
|
|
|
|
android:excludeFromRecents="true">
|
|
|
|
</activity>
|
|
|
|
|
2010-04-08 16:41:23 -05:00
|
|
|
</application>
|
|
|
|
</manifest>
|