Skip to content

Commit 0804174

Browse files
authored
feat: added device model info for bridge analytics (#73)
1 parent 4d865de commit 0804174

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Source/Immutable/Public/Immutable/ImmutableDataTypes.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ struct FImmutableEngineVersionData
2626
// cannot have spaces
2727
UPROPERTY()
2828
FString platformVersion = FPlatformMisc::GetOSVersion().Replace(TEXT(" "), TEXT("_"));
29+
30+
// Information on device. Examples of expected results: Apple|Apple M3 Max, GenuineIntel|13th Gen Intel(R) Core(TM) i7-13700H, Apple|iPhone15,4.
31+
UPROPERTY()
32+
FString deviceModel = FGenericPlatformMisc::GetDeviceMakeAndModel();
2933
};
3034

3135
USTRUCT()

0 commit comments

Comments
 (0)