How to shorten build time of Flutter iOS app using fastlane?
I had same problem that I fixed with precompiled binaries of Cloud Firestore framework from https://github.com/invertase/firestore-ios-sdk-frameworks like this:
1 2 3 4 5 6 | # ... target 'Runner' do pod 'FirebaseFirestore', :git => 'https://github.com/invertase/firestore-ios-sdk-frameworks.git', :tag => '6.26.0' # ... end |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.