Horje
Fixing Flutter ios build errors Code Example
Fixing Flutter ios build errors
1st: Run these commands to remove old generated ios files 

rm -Rf ios/Pods
rm -Rf ios/.symlinks
rm -Rf ios/Flutter/Flutter.framework
rm -Rf ios/Flutter/Flutter.podspec
rm ios/Podfile

2nd: Delete Podfile.lock (YourPoject/ios/Podfile.lock)

3rd: Run 

flutter clean &&
cd ios/ &&
sudo gem install cocoapods --pre &&
pod deintegrate &&
cd .. &&
flutter pub get &&
cd ios/ &&
pod install --repo-update &&
cd .. &&
flutter build ios --debug --simulator
pod install --repo-update 
(Make sure your cd into the iOS directory of the flutter app)




Shell

Related
batch script directory Code Example batch script directory Code Example
grep output options Code Example grep output options Code Example
yetanotherforum install Code Example yetanotherforum install Code Example
linux lastpass export data Code Example linux lastpass export data Code Example
ais data integration sentinel SAR data github Code Example ais data integration sentinel SAR data github Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10