I\'m trying to build my app on the ios simulator(ios 13), but the build fails and gives an error of pod files: Podfile is out of date
This is the error.
This mostly happens when you upgrade your flutter application, to solve this issue follow bellow steps
Go to Your_Project_Directory/ios/
and remove Podfile
or you can do it by running the following command in the root project directory
rm ios/Podfile
Run
your project again, this will create a new and updated Podfile
for you
flutter run