Flutter iOS .ipa file generation failing #2113
-
If you are looking for help, please confirm the following...
Which mobile framework are you using?Flutter (Dart) Steps to reproduce
Expected resultsThe commands in the below scripts:
...
...
...
- name: Install pods
script: |
find . -name "Podfile" -execdir pod install \;
- name: Increment build number & build ipa file
script: |
CURRENT_BUILD_NUMBER=$(app-store-connect get-latest-testflight-build-number $APPLE_ID)
NEW_BUILD_NUMBER=$(($CURRENT_BUILD_NUMBER + 1))
flutter build ipa --release --build-number=$NEW_BUILD_NUMBER --export-options-plist ~/export_options.plist --flavor $XCODE_SCHEME -t $ENTRY_POINT
...
...
... Actual resultsThrows the following error for the
Which fails the following script after that
Build id (optional)6527d3426e1a23c6c3b374be |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hi @akmalahmed525, Can you run a build with Also, Please note that you should contact our team through the chat widget in the UI for a quicker response, as your team is on a paid plan. |
Beta Was this translation helpful? Give feedback.
-
We resolved this issue on intercom but i'll post here as well.. the root cause of the issue was identified in this error message:
The issue stemmed from the user having different flavors, and the ios/Runner.xcodeproj/project.pbxproj file was referencing the incorrect configuration path location, leading to the |
Beta Was this translation helpful? Give feedback.
We resolved this issue on intercom but i'll post here as well.. the root cause of the issue was identified in this error message:
The issue stemmed from t…