Skip to content

Commit 579914e

Browse files
authored
[visionOS] Fix Crashlytics build on Xcode 15.1 beta 1 (#11938)
1 parent ffe63c9 commit 579914e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Crashlytics/Crashlytics/Components/FIRCLSApplication.m

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@
4848
return @"tvos";
4949
#elif TARGET_OS_WATCH
5050
return @"ios"; // TODO: temporarily use iOS until Firebase can add watchos to the backend
51+
#elif defined(TARGET_OS_VISION) && TARGET_OS_VISION
52+
return @"ios"; // TODO: temporarily use iOS until Firebase can add visionos to the backend
5153
#endif
5254
}
5355

0 commit comments

Comments
 (0)