-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Swift first exception messages #8295
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Generated by 🚫 Danger |
|
Hmm would this type of public-facing change require CHANGELOG updates? |
This comment has been minimized.
This comment has been minimized.
|
|
paulb777
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @ncooke3 !
FirebaseCore/Sources/FIRApp.m
Outdated
| [NSException | ||
| raise:kFirebaseCoreErrorDomain | ||
| format:@"`FirebaseApp.configure()` (`[FIRApp configure];` in Objective-C) could not find " | ||
| @"a valid GoogleService-Info.plist in your project. Please download one " | ||
| @"from %@.", | ||
| kPlistURL]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@granluo here's something we should discuss: excluding code coverage for cross product changes. ex RTDB was changed in this PR so incremental code coverage is running, but this change is in FirebaseCore and we wouldn't expect full code coverage on FirebaseCore from the RTDB tests.
Changing exception messages to be more Swift oriented.
Follow-up PR to conversation from #8266 (comment)