-
Notifications
You must be signed in to change notification settings - Fork 1.7k
[Firebase 10] Update minimum supported versions across Firebase #10233
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
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
@paulb777, CI has lots of failures but they look like network issues. Maybe the CocoaPods CDN is down right now... I will kick off another CI run in an hour or two |
The Auth failure was due to the FBSDK being updated due to raising the min. supported OS versions. This enabled the Auth sample to pull in FBSDK 13+ (opposed to FBSDK 12). And, in FBSDK 13+, there were breaking changes that broke the Auth sample app. |
Context
Firebase 10 is bumping the minimum supported versions for iOS, tvOS, and macOS.
The below table summarizes the key differences in the minimum supported versions between Firebase 9 (current) and Firebase 10 (upcoming):
*Analytics will remain at 10.0. This is reflected by Analytics's dependencies.
Bumping iOS versions
The minimum iOS version is specified using the following pattern:
FirebaseCore* and Installations are excluded as they are dependencies of Analytics
which is not bumping it's iOS minimum version.
FirebaseCore* and Installations are excluded as they are dependencies of Analytics
which is not bumping it's iOS minimum version.
Additionally, the
Firebase.podspec
is excluded as it needs to manually be modified.Bumping macOS versions
Bumping tvOS versions
The minimum tvOS version is specified using the following pattern:
Fixes #10100