079478edba
Foundation of the vendor/pawlet tree for Android 16: - Hardware feature declarations for RPi phone/tablet/TV variants - BootControl HAL: fix VINTF manifest version, qualify android::base namespace - microG: add microg.mk with FAKE_PACKAGE_SIGNATURE auto-grant and network location feature XML; enable for all RPi variants - PawletPlatform resource APK and ThemePickerPawletOverlay: fix XML comments - Updater overlay: wire in tryboot A/B config for RPi firmware tryboot support - PawletSettings added to PRODUCT_PACKAGES - Separated RPi-specific configs from base vendor config
32 lines
1.4 KiB
XML
32 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright (C) 2025-2026 oxmc / PawletOS
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
<!-- SystemUI overrides for PawletOS.
|
|
Targets com.android.systemui — do not add framework (android) config here. -->
|
|
|
|
<resources>
|
|
<!-- RPi has no battery — hide the battery indicator from the status bar.
|
|
config_statusBarIconsToExclude is the default for getIconHideList() when
|
|
Settings.Secure/icon_blacklist is unset; adding "battery" here hides the
|
|
BatteryMeterView via BatteryMeterViewController's TunerService listener. -->
|
|
<string-array name="config_statusBarIconsToExclude" translatable="false">
|
|
<item>@*android:string/status_bar_rotate</item>
|
|
<item>@*android:string/status_bar_headset</item>
|
|
<item>@*android:string/status_bar_battery</item>
|
|
</string-array>
|
|
</resources>
|