firebase-ios-sdk
firebase-ios-sdk copied to clipboard
Firebase SDK for Apple App Development
Currently we use `asl_log` for all logging within `GULLogger`, but it's deprecated. `os_log` was introduced in iOS 10 as a faster and more robust logging solution. We should move to...
The comment on the referred line specifies that the order of `supportedAuthDomains` matters. But the outer loop is the authorized domains from the web request, so actually the first match...
The @DocumentID property wrapper for Firestore does not conform to the concurrency protocol Sendable in the upcoming Swift 5.5. Conformance to Sendable will be very important for types that need...
### Feature proposal * Firebase Component: Firestore As Swift Concurrency and `AsyncThrowingStream` is available for some time, it is a good match for Firestore API. I already started with addition...
### Step 0: Are you in the right place? * For issues or feature requests related to __the code in this repository__ file a Github issue. * If this is...
### Step 1: Describe your environment * Xcode version: 13.2.1 * Firebase SDK version: 8.13.0 * Installation method: `CocoaPods` * Firebase Component: Firestore * Target platform(s): `iOS` ### Step 2:...
### Feature proposal * Firebase Component: Messaging Trying to test remote notifications via Firebase Messaging on an Apple Silicon Mac with macOS Ventura and Xcode 14. Getting this log message:...
Please add Firebase Analytics support to SDK on watchOS, so that we can record to Firebase Analytics directly from watch apps in the same way we can on iOS apps....
``` + (NSArray *)ivarObjectsForObject:(id)object { NSMutableArray *array = [NSMutableArray array]; unsigned int count; Ivar *vars = class_copyIvarList([object class], &count); for (NSUInteger i = 0; i < count; i++) { const...