From 5e44d40d2441e5efb0811ad40898c5351990c00b Mon Sep 17 00:00:00 2001 From: gawasa29 <61944230+gawasa29@users.noreply.github.com> Date: Fri, 1 Oct 2021 12:57:21 +0900 Subject: [PATCH] Update overview.mdx --- docs/overview.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/overview.mdx b/docs/overview.mdx index 81249a0a729e..a16762d2df47 100644 --- a/docs/overview.mdx +++ b/docs/overview.mdx @@ -239,14 +239,14 @@ Once initialized, you're ready to get started using FlutterFire! 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.6.0'` +`pod 'FirebaseFirestore', :git => 'https://github.com/invertase/firestore-ios-sdk-frameworks.git', :tag => '8.7.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.6.0' + pod 'FirebaseFirestore', :git => 'https://github.com/invertase/firestore-ios-sdk-frameworks.git', :tag => '8.7.0' # ... end ```