Skip to content

Commit

Permalink
[visionOS] Fix Crashlytics build on Xcode 15.1 beta 1 (#11938)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewheard authored Oct 17, 2023
1 parent ffe63c9 commit 579914e
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 579914e

Please sign in to comment.