The presence of the Last Exception Backtrace section indicates that your app is crashing due to an unhandled language exception. Look at its backtrace:
Last Exception Backtrace:
0 CoreFoundation … __exceptionPreprocess + 164 (NSException.m:202)
1 libobjc.A.dylib … objc_exception_throw + 60 (objc-exception.mm:356)
2 Dexterity … 0x102530000 + 6816252 (exception_apple.mm:67)
3 Dexterity … firebase::firestore::util::Throw(firebase::firestore::util::ExceptionType…
4 Dexterity … 0x102530000 + 5606696 (exception.h:94)
5 Dexterity … 0x102530000 + 5606536 (FIRCollectionReference.mm:110)
6 Dexterity … 0x102530000 + 453708 (ViewModel.swift:159)
7 Dexterity … 0x102530000 + 304376 (CreateSubView.swift:301)
8 Dexterity … 0x102530000 + 300372 (CreateSubView.swift:223)
9 SwiftUI … partial apply for implicit closure #2 in implicit …
In frame 9 Swift UI is calling your code. It’s then your code all the way up to frame 2, where you throw a language exception. It looks like frames 2 through 4 are all exception throwing glue, so the source of the exception is frame 5, that is, line 110 of FIRCollectionReference.mm. You need to look up that code to find out what it’s complaining about.
Share and Enjoy
—
Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"