I think the problem is some kind of Context mismatch because the resource was in the framework but referencing an app class. Change-Id: Ia6b37c9c8be5dddc836331859e779cd80dd32596
40 lines
1.3 KiB
XML
40 lines
1.3 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">
|
|
|
|
<service
|
|
android:name=".statusbar.PhoneStatusBarService"
|
|
android:exported="false"
|
|
/>
|
|
|
|
<service
|
|
android:name=".statusbar.tablet.TabletStatusBarService"
|
|
android:exported="false"
|
|
/>
|
|
|
|
<activity android:name=".usb.UsbStorageActivity"
|
|
android:excludeFromRecents="true">
|
|
</activity>
|
|
|
|
<activity android:name=".recent.RecentApplicationsActivity"
|
|
android:theme="@android:style/Theme.NoTitleBar"
|
|
android:excludeFromRecents="true"
|
|
android:exported="true">
|
|
</activity>
|
|
|
|
</application>
|
|
</manifest>
|