This ensures that the system won't kill it for memory, the user can't stop services inside of it, etc. Change-Id: I923c376afa1133bccc000253f5bba851f9119a52
26 lines
774 B
XML
26 lines
774 B
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" />
|
|
|
|
<application
|
|
android:persistent="true"
|
|
android:allowClearUserData="false"
|
|
android:label="@string/app_label"
|
|
android:icon="@drawable/ic_launcher_settings">
|
|
|
|
<service
|
|
android:name=".statusbar.StatusBarService"
|
|
android:exported="false"
|
|
/>
|
|
|
|
<activity android:name=".usb.UsbStorageActivity"
|
|
android:excludeFromRecents="true">
|
|
</activity>
|
|
|
|
</application>
|
|
</manifest>
|