vermeer: overlay: Add Wifires especific variant

Signed-off-by: Lunark :3 <jvillaltamatos3007@gmail.com>

Change-Id: I42f924d2e7dee6939d38767117fe6d64cb444b4f
This commit is contained in:
ByteWave1014
2025-02-18 11:03:03 -05:00
committed by Lunark :3
parent 2487ddfc8f
commit 22636e3ec2
7 changed files with 75 additions and 1 deletions

View File

@@ -13,7 +13,9 @@ $(call inherit-product, vendor/xiaomi/vermeer/vermeer-vendor.mk)
# Overlay
PRODUCT_PACKAGES += \
SettingsProviderResVermeerPOCO \
SettingsProviderResVermeerRedmi
SettingsProviderResVermeerRedmi \
WifiResVermeerPOCO \
WifiResVermeerRedmi
# Soong namespaces
PRODUCT_SOONG_NAMESPACES += \

View File

@@ -0,0 +1,10 @@
//
// Copyright (C) 2025 The LineageOS Project
//
// SPDX-License-Identifier: Apache-2.0
//
runtime_resource_overlay {
name: "WifiResVermeerPOCO",
device_specific: true,
}

View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<!--
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.wifi.resources.overlay.vermeer.poco">
<overlay
android:isStatic="true"
android:priority="801"
android:targetName="WifiCustomization"
android:targetPackage="com.android.wifi.resources"
android:requiredSystemPropertyName="ro.product.model"
android:requiredSystemPropertyValue="23113RKC6G" />
</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 access point SSID used for tethering -->
<string name="wifi_tether_configure_ssid_default" translatable="false">POCO F6 Pro</string>
</resources>

View File

@@ -0,0 +1,10 @@
//
// Copyright (C) 2025 The LineageOS Project
//
// SPDX-License-Identifier: Apache-2.0
//
runtime_resource_overlay {
name: "WifiResVermeerRedmi",
device_specific: true,
}

View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<!--
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.wifi.resources.overlay.vermeer.redmi">
<overlay
android:isStatic="true"
android:priority="801"
android:targetName="WifiCustomization"
android:targetPackage="com.android.wifi.resources"
android:requiredSystemPropertyName="ro.product.model"
android:requiredSystemPropertyValue="23113RKC6C" />
</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 access point SSID used for tethering -->
<string name="wifi_tether_configure_ssid_default" translatable="false">Redmi K70</string>
</resources>