-
If you are looking for help, please confirm the following...
Which mobile framework are you using?Flutter (Dart) Steps to reproduceFlutter 3.10.2 xcode 14.3.1 cocoa default log error `
Publish "/Users/builder/clone/build/ios/ipa/Trade Hive Signals.ipa" to App Store Connect Upload "/Users/builder/clone/build/ios/ipa/Trade Hive Signals.ipa" to App Store Connect Failed to publish Trade Hive Signals.ipa to App Store Connect. Build failed :| Publishing failed :| Expected resultsandroid deploy succesed Actual results, but ios... Build id (optional)65227581cf2f9a2f11311dda |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
I'm experiencing the same issue |
Beta Was this translation helpful? Give feedback.
-
Hey @Dvrcksoft, the error message is mentioning |
Beta Was this translation helpful? Give feedback.
-
This discussion is being closed due to no activity. You can reopen the discussion at any time if needed. |
Beta Was this translation helpful? Give feedback.
hey @UFOStudios, as i was mentioning below, this error typically occurs because you've previously uploaded an app version with the same bundle version to the App Store.
Apple requires that each new submission must have a higher bundle version than the previously uploaded version.
To resolve this issue, just add this build arguments to your build step
--build-name=1.2.$PROJECT_BUILD_NUMBER --build-number=$(($PROJECT_BUILD_NUMBER + 1))
if you are using codemagic.yaml and not workflow editor, then yo…