[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

@ -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"
}
];