9665186d90
AndroidRpiOverlay, AndroidTvRpiOverlay, BluetoothRpiOverlay, CarServiceRpiOverlay, SettingsRpiOverlay, and SystemUIRpiOverlay were identical in pawlet_rpi4 and pawlet_rpi5. Consolidate them here so they have a single source of truth. Device-specific overlays (SettingsProviderRpiOverlay, SettingsProviderTvRpiOverlay, WifiRpiOverlay) stay per-device because they contain device-name and SSID strings that differ between rpi4/rpi5. device/pawlet/rpi is already in PRODUCT_SOONG_NAMESPACES via vendor/pawlet/config/rpi_common.mk, so no makefile changes are needed.
20 lines
463 B
XML
20 lines
463 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
/*
|
|
** Copyright (C) 2021-2022 KonstaKANG
|
|
**
|
|
** SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
-->
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="android.rpi"
|
|
android:versionCode="1"
|
|
android:versionName="1.0" >
|
|
<application android:hasCode="false" />
|
|
<overlay
|
|
android:targetPackage="android"
|
|
android:isStatic="true"
|
|
android:priority="0" />
|
|
</manifest>
|