Skip to content
Discussion options

You must be logged in to vote

Hello @mrweiland
From the logs, you seem to be building in debug mode and since you mentioned you want to publish to the store, you might need to change to release in the build section of your Codemagic settings UI.
That aside, as regards the error in debug mode, a user with a similar error shared that they included the code below in their Podfile, and this was resolved in their case:

Post_install do |installer|
installer.pods_project.targets.each do |target|
flutter_additional_ios_build_settings(target)

# Forcefully set the deployment target for all targets
target.build_configurations.each do |config|
  config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
end
end

Workaround for…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by dam-ease
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
2 participants