1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-11-04 09:17:29 +01:00

Huawei: fixed PhoneInfo command

This commit is contained in:
Me7c7 2024-09-20 17:24:47 +03:00 committed by José Rebelo
parent 17b530c989
commit ee1b71a240

View File

@ -798,19 +798,21 @@ public class DeviceConfig {
this.tlv = new HuaweiTLV(); this.tlv = new HuaweiTLV();
for (byte b : phoneInfo) { for (byte b : phoneInfo) {
switch (b) { switch (b) {
case 0x0:
break;
case 0xf: case 0xf:
break; break;
case 0x11: case 0x11:
this.tlv.put((int)b, "1200107310"); // Force AppVersion to 12.1.7.310 this.tlv.put(b, 1400106310); // Force AppVersion to 14.1.6.310
break; break;
case 0x15: case 0x15:
this.tlv.put((int)b, ""); // Force buildOSPlatformVersion to "" this.tlv.put(b); // Force buildOSPlatformVersion to ""
break; break;
case 0x10: // Force EmuiBuildVersion to 0x00 case 0x10: // Force EmuiBuildVersion to 0x00
case 0x13: // Force buildOsEnable to 0x00 case 0x13: // Force buildOsEnable to 0x00
case 0x14: // Force buildOSApiVersion to 0x00 case 0x14: // Force buildOSApiVersion to 0x00
default: default:
this.tlv.put((int)b, "00"); this.tlv.put(b, (byte)00);
} }
} }
this.complete = true; this.complete = true;