claude-code - 💡(How to fix) Fix [BUG] Claude repeatedly sets iOS deployment target too low in Flutter projects

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…

Error Message

When setting up Flutter iOS projects, Claude consistently sets (or omits) the minimum iOS deployment target below what modern plugins require. The correct minimum for this project is 15.5, defined in both ios/Podfile (platform :ios, '15.5') and ios/Runner.xcodeproj/project.pbxproj (IPHONEOS_DEPLOYMENT_TARGET = 15.5). Omitting this causes build failures on CI. Claude should always verify and set the iOS deployment target before pushing — not wait for the CI error.

Error Messages/Logs

  1. Start a new Claude Code conversation in a Flutter project that includes google_mlkit_text_recognition or similar modern iOS plugins. 2. Ask Claude to set up iOS builds and push to a GitHub repository. 3. Observe that Claude does not set the minimum iOS deployment target in ios/Podfile or ios/Runner.xcodeproj/project.pbxproj. 4. Run a CI build (e.g. Codemagic) and get the error: "requires a higher minimum iOS deployment version — increase deployment target to at least 15.5". 5. Correct Claude in the conversation. 6. Start a new conversation and repeat steps 1-4. The same omission occurs again.
RAW_BUFFERClick to expand / collapse

Preflight Checklist

  • I have searched existing issues and this hasn't been reported yet
  • This is a single bug report (please file separate reports for different bugs)
  • I am using the latest version of Claude Code

What's Wrong?

When setting up Flutter iOS projects, Claude consistently sets (or omits) the minimum iOS deployment target below what modern plugins require. The correct minimum for this project is 15.5, defined in both ios/Podfile (platform :ios, '15.5') and ios/Runner.xcodeproj/project.pbxproj (IPHONEOS_DEPLOYMENT_TARGET = 15.5). Omitting this causes build failures on CI. Claude should always verify and set the iOS deployment target before pushing — not wait for the CI error.

What Should Happen?

When setting up or modifying a Flutter iOS project, Claude should always verify and explicitly set the minimum iOS deployment target to the correct value (at least 15.5 for projects using modern plugins) in both ios/Podfile and ios/Runner.xcodeproj/project.pbxproj before pushing to any repository, without waiting for a CI build failure to detect the omission.

Error Messages/Logs

Steps to Reproduce

  1. Start a new Claude Code conversation in a Flutter project that includes google_mlkit_text_recognition or similar modern iOS plugins. 2. Ask Claude to set up iOS builds and push to a GitHub repository. 3. Observe that Claude does not set the minimum iOS deployment target in ios/Podfile or ios/Runner.xcodeproj/project.pbxproj. 4. Run a CI build (e.g. Codemagic) and get the error: "requires a higher minimum iOS deployment version — increase deployment target to at least 15.5". 5. Correct Claude in the conversation. 6. Start a new conversation and repeat steps 1-4. The same omission occurs again.

Claude Model

None

Is this a regression?

Yes, this worked in a previous version

Last Working Version

No response

Claude Code Version

2.1.143 (Claude Code)

Platform

Anthropic API

Operating System

Windows

Terminal/Shell

Terminal.app (macOS)

Additional Information

No response

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING

claude-code - 💡(How to fix) Fix [BUG] Claude repeatedly sets iOS deployment target too low in Flutter projects