zeus: overlay: Add WifiResZeus
Bug: 148617260 Test: Device boots up and connects to wifi networks. Change-Id: Iec27a6d947a232a42451ef095dc73d1a52327db5
This commit is contained in:
parent
9d8fd6ceed
commit
7f7852794a
4 changed files with 32 additions and 1 deletions
|
@ -12,7 +12,8 @@ $(call inherit-product, vendor/xiaomi/zeus/zeus-vendor.mk)
|
|||
|
||||
# Overlay
|
||||
PRODUCT_PACKAGES += \
|
||||
SettingsProviderResZeus
|
||||
SettingsProviderResZeus \
|
||||
WifiResZeus
|
||||
|
||||
# Soong namespaces
|
||||
PRODUCT_SOONG_NAMESPACES += \
|
||||
|
|
10
overlay/Wifi/Android.bp
Normal file
10
overlay/Wifi/Android.bp
Normal file
|
@ -0,0 +1,10 @@
|
|||
//
|
||||
// Copyright (C) 2023 The LineageOS Project
|
||||
//
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
//
|
||||
|
||||
runtime_resource_overlay {
|
||||
name: "WifiResZeus",
|
||||
device_specific: true
|
||||
}
|
11
overlay/Wifi/AndroidManifest.xml
Normal file
11
overlay/Wifi/AndroidManifest.xml
Normal file
|
@ -0,0 +1,11 @@
|
|||
<!--
|
||||
Copyright (C) 2022 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.zeus">
|
||||
<overlay android:targetPackage="com.android.wifi.resources"
|
||||
android:targetName="WifiCustomization"
|
||||
android:isStatic="true"
|
||||
android:priority="700"/>
|
||||
</manifest>
|
9
overlay/Wifi/res/values/config.xml
Normal file
9
overlay/Wifi/res/values/config.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2023 The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<!-- Do not translate. Default access point SSID used for tethering -->
|
||||
<string name="wifi_tether_configure_ssid_default" translatable="false">Xiaomi 12 Pro</string>
|
||||
</resources>
|
Loading…
Reference in a new issue