Skip to content

Commit

Permalink
feat: Update Firebase iOS SDK to 8.15.0 (#8454)
Browse files Browse the repository at this point in the history
  • Loading branch information
syonkr committed Apr 14, 2022
1 parent c7418cb commit faaf449
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/firestore/overview.mdx
Expand Up @@ -36,14 +36,14 @@ flutter run

Currently, the Firestore iOS SDK depends on some 500k lines of mostly C++ code which can take upwards of 5 minutes to build in Xcode. To reduce build times significantly, you can use a pre-compiled version by adding 1 line to your `ios/Podfile` inside your Flutter project;

`pod 'FirebaseFirestore', :git => 'https://github.com/invertase/firestore-ios-sdk-frameworks.git', :tag => '8.14.0'`
`pod 'FirebaseFirestore', :git => 'https://github.com/invertase/firestore-ios-sdk-frameworks.git', :tag => '8.15.0'`

Add this line inside your target 'Runner' do block in your Podfile, e.g.:

```
# ...
target 'Runner' do
pod 'FirebaseFirestore', :git => 'https://github.com/invertase/firestore-ios-sdk-frameworks.git', :tag => '8.14.0'
pod 'FirebaseFirestore', :git => 'https://github.com/invertase/firestore-ios-sdk-frameworks.git', :tag => '8.15.0'
# ...
end
```
Expand Down
2 changes: 1 addition & 1 deletion docs/manual-installation.mdx
Expand Up @@ -120,5 +120,5 @@ Open your `/ios/Podfile` or `/macos/Podfile` file and add any of the globals bel

```ruby
# Override Firebase SDK Version
$FirebaseSDKVersion = '8.14.0'
$FirebaseSDKVersion = '8.15.0'
```
@@ -1,4 +1,4 @@
# https://firebase.google.com/support/release-notes/ios
def firebase_sdk_version!()
'8.14.0'
'8.15.0'
end

0 comments on commit faaf449

Please sign in to comment.