Reputation: 401
I am getting errors when trying to run the flutter app in IOS. First I tried to run a project that was made in Windows for android and it worked but when I run the same project for IOS it doesn't work and shows the error of pod files as below:
Unable to load contents of file list:
'/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Debug-output-files.xcfilelist'
Unable to load contents of file list:
'/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Debug-input-files.xcfilelist'
Unable to load contents of file list:
'/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Debug-output-files.xcfilelist'
/Users/shikha/Desktop/vodome/ios/Runner/AppDelegate.h:1:9:
'Flutter/Flutter.h' file not found
even if I make a new project it doesn't work in IOS and is showing different errors like above and below:
and the error keeps changing like this. please if anyone can help me with this, let me know. thank you
Upvotes: 1
Views: 2901
Reputation: 154
trying to following command.
Upvotes: 2
Reputation: 4545
Navigate to your project then run command in terminal:
cd ios
pod install
it will update your podfile
Upvotes: 1