Skip to content

Commit

Permalink
[visionOS] Fix Crashlytics build on Xcode 15.1 beta 1
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewheard committed Oct 13, 2023
1 parent 9425f60 commit b1443c8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Crashlytics/Crashlytics/Components/FIRCLSApplication.m
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@
return @"tvos";
#elif TARGET_OS_WATCH
return @"ios"; // TODO: temporarily use iOS until Firebase can add watchos to the backend
#elif defined(TARGET_OS_VISION) && TARGET_OS_VISION
return @"ios"; // TODO: temporarily use iOS until Firebase can add visionos to the backend
#endif
}

Expand Down

0 comments on commit b1443c8

Please sign in to comment.