You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Set the FIRESTORE_INCLUDE_OBJC cmake cache var to NO to avoid building Objective-C parts of the iOS SDK.
This won't have any effects until the iOS dependencies are updated to a version that includes firebase/firebase-ios-sdk#9658.
This will fix the following build error:
```
FIRFirestore.h:147:20: error: unknown attribute 'swift_async' ignored [-Werror,-Wunknown-attributes]
__attribute__((swift_async(none))); // Disable async import due to #9426.
^
1 error generated.
```
which was introduced by firebase/firebase-ios-sdk#9502.
It avoids it by simply not building the file at all :)
0 commit comments