Reputation: 21111
I have Flutter app with 10-15 dependencies and my iOS builds take up to 50 minutes that sounds quite long comparing to builds on local machine (2-3 minutes).
I enabled dependency caching for
For one of my latest builds pod install took about 300 seconds (less than 10 seconds on local machine) and Xcode build more than 1300 seconds (less than 80 seconds on local machine). Is it fine? What else can be done to increase build speed?
Upvotes: 3
Views: 1528
Reputation: 1
Enabled dependency caching Add these paths
$HOME/.pub-cache
$HOME/.gradle/caches
$HOME/Library/Caches/CocoaPods
Upvotes: 0