vermeer: overlay: Move all Wifi overlays to single dir

Change-Id: Ib01f9f6162ba8f8763f1cd5876f6a72075e9abd4
This commit is contained in:
AdarshGrewal
2025-09-01 16:11:33 +05:30
committed by Lunark :3
parent aeadc6a317
commit 610b742ae5
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: "WifiResVermeerPOCO",
manifest: "AndroidManifest-POCO.xml",
resource_dirs: ["res-POCO"],
vendor: true,
}
runtime_resource_overlay {
name: "WifiResVermeerRedmi",
manifest: "AndroidManifest-Redmi.xml",
resource_dirs: ["res-Redmi"],
vendor: 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">
<application android:hasCode="false" />
<overlay
android:isStatic="true"
android:priority="800"
android:targetName="WifiCustomization"
android:targetPackage="com.android.wifi.resources"
android:requiredSystemPropertyName="ro.boot.hwc"
android:requiredSystemPropertyValue="GL" />
</manifest>

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="750"
android:targetName="WifiCustomization"
android:targetPackage="com.android.wifi.resources"
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 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,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>