vermeer: overlay: Move all SettingsProvider overlays to single dir

Change-Id: Idcd2c557edccc168d460a2e81922167d876f021d
This commit is contained in:
AdarshGrewal
2025-07-27 16:31:16 +05:30
committed by Lunark :3
parent 579ff09ade
commit aeadc6a317
7 changed files with 18 additions and 20 deletions

View File

@@ -0,0 +1,18 @@
//
// SPDX-FileCopyrightText: The LineageOS Project
// SPDX-License-Identifier: Apache-2.0
//
runtime_resource_overlay {
name: "SettingsProviderResVermeerPOCO",
manifest: "AndroidManifest-POCO.xml",
resource_dirs: ["res-POCO"],
vendor: true,
}
runtime_resource_overlay {
name: "SettingsProviderResVermeerRedmi",
manifest: "AndroidManifest-Redmi.xml",
resource_dirs: ["res-Redmi"],
vendor: true,
}

View File

@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2025 The LineageOS Project
SPDX-License-Identifier: Apache-2.0
-->
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.providers.settings.overlay.vermeer.poco">
<application android:hasCode="false" />
<overlay
android:isStatic="true"
android:priority="800"
android:targetPackage="com.android.providers.settings"
android:requiredSystemPropertyName="ro.boot.hwc"
android:requiredSystemPropertyValue="GL" />
</manifest>

View File

@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2025 The LineageOS Project
SPDX-License-Identifier: Apache-2.0
-->
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.providers.settings.overlay.vermeer.redmi">
<application android:hasCode="false" />
<overlay
android:isStatic="true"
android:priority="750"
android:targetPackage="com.android.providers.settings"
android:requiredSystemPropertyName="ro.boot.hwc"
android:requiredSystemPropertyValue="CN" />
</manifest>

View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2025 The LineageOS Project
SPDX-License-Identifier: Apache-2.0
-->
<resources>
<!-- Default for Settings.Global.DEVICE_NAME $1=MODEL-->
<string name="def_device_name_simple">POCO F6 Pro</string>
</resources>

View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2025 The LineageOS Project
SPDX-License-Identifier: Apache-2.0
-->
<resources>
<!-- Default for Settings.Global.DEVICE_NAME $1=MODEL-->
<string name="def_device_name_simple">Redmi K70</string>
</resources>