Add initial MIC e-labels for JP SKU of C10 and P10

- Add label for GFE4J (mmWave-JP) of C10.
- Add label for G03Z5 (Sub6-JP) of P10.

Bug: 213977009
Test: visual
Change-Id: If34fbb37f5269294bd2fd5d599f79d3d1df57cf4
This commit is contained in:
Yanting Yang 2022-03-14 15:42:57 +08:00 committed by TreeHugger Robot
parent 3e00fd613b
commit c83cb2cf1e
8 changed files with 46 additions and 3 deletions

View file

@ -0,0 +1,8 @@
package {
default_applicable_licenses: ["Android-Apache-2.0"],
}
runtime_resource_overlay {
name: "SettingsOverlayGFE4J",
product_specific: true,
}

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.settings.overlay.gfe4j">
<application android:hasCode="false" />
<overlay android:targetPackage="com.android.settings"
android:requiredSystemPropertyName="ro.boot.hardware.sku"
android:requiredSystemPropertyValue="GFE4J"
android:isStatic="true" />
</manifest>

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

View file

@ -165,8 +165,8 @@ PRODUCT_PROPERTY_OVERRIDES += \
# PowerStats HAL # PowerStats HAL
PRODUCT_SOONG_NAMESPACES += \ PRODUCT_SOONG_NAMESPACES += \
device/google/pantah/powerstats/cheetah device/google/pantah/powerstats/cheetah \
device/google/pantah
# Fingerprint HAL # Fingerprint HAL
GOODIX_CONFIG_BUILD_VERSION := g7_trusty GOODIX_CONFIG_BUILD_VERSION := g7_trusty
@ -212,3 +212,7 @@ PRODUCT_PRODUCT_PROPERTIES += \
PRODUCT_PACKAGES += \ PRODUCT_PACKAGES += \
NoCutoutOverlay \ NoCutoutOverlay \
AvoidAppsInCutoutOverlay AvoidAppsInCutoutOverlay
# SKU specific RROs
PRODUCT_PACKAGES += \
SettingsOverlayGFE4J

View file

@ -154,7 +154,8 @@ PRODUCT_PROPERTY_OVERRIDES += \
# PowerStats HAL # PowerStats HAL
PRODUCT_SOONG_NAMESPACES += \ PRODUCT_SOONG_NAMESPACES += \
device/google/pantah/powerstats/panther device/google/pantah/powerstats/panther \
device/google/pantah
# Fingerprint HAL # Fingerprint HAL
GOODIX_CONFIG_BUILD_VERSION := g7_trusty GOODIX_CONFIG_BUILD_VERSION := g7_trusty
@ -203,3 +204,7 @@ PRODUCT_PRODUCT_PROPERTIES += \
PRODUCT_PACKAGES += \ PRODUCT_PACKAGES += \
NoCutoutOverlay \ NoCutoutOverlay \
AvoidAppsInCutoutOverlay AvoidAppsInCutoutOverlay
# SKU specific RROs
PRODUCT_PACKAGES += \
SettingsOverlayG03Z5

View file

@ -0,0 +1,8 @@
package {
default_applicable_licenses: ["Android-Apache-2.0"],
}
runtime_resource_overlay {
name: "SettingsOverlayG03Z5",
product_specific: true,
}

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.settings.overlay.g03z5">
<application android:hasCode="false" />
<overlay android:targetPackage="com.android.settings"
android:requiredSystemPropertyName="ro.boot.hardware.sku"
android:requiredSystemPropertyValue="G03Z5"
android:isStatic="true" />
</manifest>

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 KiB