e58d2cf2ac
- pawlet-framework-res-overlay priority 1 -> 3 so PawletOS framework config overrides device-specific (pawlet-rpi=2) and base (androidrpi/tv=1). - pawlet-systemui-overlay was non-static (disabled at boot); add android:isStatic="true" so its SystemUI overrides actually apply.
19 lines
486 B
XML
19 lines
486 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright (C) 2025-2026 oxmc / PawletOS
|
|
SPDX-License-Identifier: Apache-2.0
|
|
-->
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="me.pawlet.overlay.systemui">
|
|
|
|
<overlay
|
|
android:targetPackage="com.android.systemui"
|
|
android:isStatic="true"
|
|
android:priority="1" />
|
|
|
|
<application
|
|
android:label="PawletOS SystemUI Overlay"
|
|
android:hasCode="false" />
|
|
|
|
</manifest>
|