How to shorten build time of Flutter iOS app using fastlane How to shorten build time of Flutter iOS app using fastlane xcode xcode

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:

# ...target 'Runner' do  pod 'FirebaseFirestore', :git => 'https://github.com/invertase/firestore-ios-sdk-frameworks.git', :tag => '6.26.0'# ...end

Full instructions could be found here https://github.com/FirebaseExtended/flutterfire/issues/2751