[Settings > General] Expose codename in platform info

This commit is contained in:
Jack Matthews 2023-01-11 01:12:26 -05:00 committed by Beef
parent 8b480b92e2
commit d0020c5561
2 changed files with 9 additions and 2 deletions

View file

@ -92,14 +92,16 @@ export function getDebugInfo(string: boolean = false) {
device: {
manufacturer: PlatformConstants.Manufacturer,
brand: PlatformConstants.Brand,
model: PlatformConstants.Model
model: PlatformConstants.Model,
codename: DCDDeviceManager.device
}
},
ios: {
device: {
manufacturer: DCDDeviceManager.deviceManufacturer,
brand: DCDDeviceManager.deviceBrand,
model: DCDDeviceManager.device
model: DCDDeviceManager.deviceModel,
codename: DCDDeviceManager.device
}
}
}

View file

@ -65,6 +65,11 @@ export default function General() {
label: "Model",
version: debugInfo.device.model,
icon: "ic_phonelink_24px"
},
{
label: RN.Platform.select({android: "Codename", ios: "Machine ID"})!,
version: debugInfo.device.codename,
icon: "ic_compose_24px"
}
];