Add a firebase plugin like firebase_analytics to a vanilla Flutter project and time how long it takes to download the dependencies from a clean environment.
flutter create my_app && cd my_app
flutter config --enable-swift-package-manager
flutter pub add firebase_analytics
rm -rf $HOME/Library/Caches/org.swift.swiftpm
rm -rf $HOME/Library/org.swift.swiftpm
rm -rf $HOME/Library/Developer/Xcode/DerivedData
cd ios
time xcodebuild -resolvePackageDependencies
The "real" time outputted is usually around 4 minutes
4 minutes to download 1 plugin and it's dependencies is pretty bad
I don't think it's related to my internet connection because I'm getting 120 Mbps down.
Add a firebase plugin like
firebase_analyticsto a vanilla Flutter project and time how long it takes to download the dependencies from a clean environment.flutter create my_app && cd my_appflutter config --enable-swift-package-managerflutter pub add firebase_analyticsrm -rf $HOME/Library/Caches/org.swift.swiftpmrm -rf $HOME/Library/org.swift.swiftpmrm -rf $HOME/Library/Developer/Xcode/DerivedDatacd iostime xcodebuild -resolvePackageDependenciesThe "real" time outputted is usually around 4 minutes
4 minutes to download 1 plugin and it's dependencies is pretty bad
I don't think it's related to my internet connection because I'm getting 120 Mbps down.