mirror of
https://github.com/chararomandroid/android_device_samsung_a20
synced 2026-08-21 11:55:31 -04:00
universal7885: NFC SKU A40 Model fix
The A404F - "M" Model isn't detecting the NFC HW, so we added A405F models to init_universal7885 and seperate the models by the added code. This commit is confirmed and working.
This commit is contained in:
parent
bc8c63b6da
commit
de57eed3fa
1 changed files with 5 additions and 0 deletions
|
|
@ -88,6 +88,11 @@ void vendor_load_properties() {
|
|||
model == "SM-A202F") {
|
||||
property_override("ro.boot.product.hardware.sku", "NFC");
|
||||
}
|
||||
|
||||
if (hasEnding(model, "N") || hasEnding(model, "M") ||
|
||||
model == "SM-A405F") {
|
||||
property_override("ro.boot.product.hardware.sku", "NFC");
|
||||
}
|
||||
|
||||
set_ro_build_prop("model", model);
|
||||
set_ro_build_prop("product", model, false);
|
||||
|
|
|
|||
Loading…
Reference in a new issue