Skip to content

Commit 5f80643

Browse files
committed
chore: fix crash on sample app on logging event (SDKCF-6882)
* chore: fix crash on sample app on logging event (SDKCF-6882)
1 parent 4d49333 commit 5f80643

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Sample/EventLogger/EventLoggerView.swift

-2
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,6 @@ struct EventLoggerView: View {
129129
Section {
130130
Button(action: {
131131
isLoggingInprogress = true
132-
hideKeyboard()
133132
sendEvent()
134133
}) {
135134
Text(isCritical ? "Log Critical Event" : "Log Warning Event")
@@ -138,7 +137,6 @@ struct EventLoggerView: View {
138137

139138
Button(action: {
140139
isLoggingInprogress = true
141-
hideKeyboard()
142140
sendUniqueEvent()
143141
}) {
144142
Text("Log Unique Event")

Sources/RSDKUtilsMain/Extensions/Bundle+EnvironmentInformation.swift

+1
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ extension Bundle: BundleProtocol {
9090
case "iPhone15,4": return "iPhone 15"
9191
case "iPhone15,5": return "iPhone 15 Plus"
9292
case "iPhone16,1": return "iPhone 15 Pro"
93+
case "iPhone16,2": return "iPhone 15 Pro Max"
9394
default: return identifier
9495
}
9596
#endif

0 commit comments

Comments
 (0)