f3c3c4fd14
There is now one SystemUIService, which starts the status bar service. Pretty soon there will be other things running in here too. This way we don't need to have each of them started by something individually. This also moves the choice between tablet and phone status bar into SystemUI.apk, which seems like a much better place for it. Change-Id: Ib69ef2f43d648764f8dbb52008f5d036a1ee07d9
43 lines
1.6 KiB
XML
43 lines
1.6 KiB
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.android.systemui"
|
|
android:sharedUserId="android.uid.system"
|
|
android:process="system"
|
|
>
|
|
|
|
<uses-permission android:name="android.permission.STATUS_BAR_SERVICE" />
|
|
<uses-permission android:name="android.permission.BLUETOOTH" />
|
|
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
|
|
<uses-permission android:name="android.permission.GET_TASKS" />
|
|
|
|
<application
|
|
android:persistent="true"
|
|
android:allowClearUserData="false"
|
|
android:label="@string/app_label"
|
|
android:icon="@drawable/ic_launcher_settings">
|
|
|
|
<!-- Broadcast receiver that gets the broadcast at boot time and starts
|
|
up everything else.
|
|
TODO: Should have an android:permission attribute
|
|
-->
|
|
<service android:name="SystemUIService"
|
|
android:exported="true"
|
|
/>
|
|
|
|
<activity android:name=".usb.UsbStorageActivity"
|
|
android:excludeFromRecents="true">
|
|
</activity>
|
|
<activity android:name="com.android.internal.app.ExternalMediaFormatActivity"
|
|
android:theme="@*android:style/Theme.Dialog.Alert"
|
|
android:excludeFromRecents="true">
|
|
</activity>
|
|
|
|
<activity android:name=".recent.RecentApplicationsActivity"
|
|
android:theme="@android:style/Theme.NoTitleBar"
|
|
android:excludeFromRecents="true"
|
|
android:launchMode="singleInstance"
|
|
android:exported="true">
|
|
</activity>
|
|
|
|
</application>
|
|
</manifest>
|