-
If you are looking for help, please confirm the following...
Which mobile framework are you using?Flutter (Dart) Steps to reproduceI develop in linux using VSCode, building and deploying to the AppStore via codemagic. I have a published App, both stores (apple/android) and just recently updated its dependencies and add this couple webview_flutter and package_info_plus. Nothing complex. PlayStore: Built locally without trouble for android and the updated build was published. AppStore: Failed. The error:
However, the Podfile does not exist and flutter does not seem to consider it necessary somehow as it won't create it. Expected resultsI expect to have a successful build and deployment as with the previous build. Actual resultsNot building asking something that can't be done or at least not straight forward. Build id (optional)64c15b234e70f964891aaa69 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
Hi @raenk Inside your repository, run This should fix the problem. If that is not the case however, let me know. |
Beta Was this translation helpful? Give feedback.
@raenk
Alright, took a second look at the errors and seems like the main culprit here is actually this error:
The error is caused by the fact that you are building using newer versions of Flutter, but the project itself was created using an older version. Flutter has changed their
ios
folder setup, which is why the older projects run into this error with ios when using newer versions of Flutter.There are three methods in how to fix it:
On your local machine, using the latest stable flutter for example, delete
ios
folder, then runflutter create .
. This does not create aPodfile
on Windows/Linux machi…