Skip to content

Add Firebase pod support for Auth/Crashlytics watchOS #6435

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

Merged
merged 2 commits into from
Sep 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions Firebase.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,21 @@ Simplify your app development, grow your user base, and monetize more effectivel
s.subspec 'Auth' do |ss|
ss.dependency 'Firebase/CoreOnly'
ss.dependency 'FirebaseAuth', '~> 6.9.1'
# Standard platforms PLUS watchOS.
ss.ios.deployment_target = '8.0'
ss.osx.deployment_target = '10.11'
ss.tvos.deployment_target = '10.0'
ss.watchos.deployment_target = '6.0'
end

s.subspec 'Crashlytics' do |ss|
ss.dependency 'Firebase/CoreOnly'
ss.dependency 'FirebaseCrashlytics', '~> 4.6.0'
# Standard platforms PLUS watchOS.
ss.ios.deployment_target = '8.0'
ss.osx.deployment_target = '10.11'
ss.tvos.deployment_target = '10.0'
ss.watchos.deployment_target = '6.0'
end

s.subspec 'Database' do |ss|
Expand Down
1 change: 1 addition & 0 deletions FirebaseCore/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Firebase 6.33.0
- [fixed] Swift Package Manager - Define system framework and system library dependencies. This
resolves undefined symbol issues for system dependencies. (#6408, #6413)
- [fixed] Enable Firebase pod support for Auth and Crashlytics watchOS platform. (#4558)

# Firebase 6.32.0
- [changed] Swift Package Manager - It's no longer necessary to select the Firebase or
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ To install, add a subset of the following to the Podfile:
```
pod 'Firebase/ABTesting' # No watchOS support yet
pod 'Firebase/Auth' # Limited watchOS support
pod 'Firebase/Crashlytics' # No watchOS support yet
pod 'Firebase/Crashlytics'
pod 'Firebase/Database' # No watchOS support yet
pod 'Firebase/Firestore' # No watchOS support yet
pod 'Firebase/Functions' # No watchOS support yet
Expand Down