Skip to content

Conversation

@graycreate
Copy link
Member

Summary

  • Sync Info.plist version numbers with project.pbxproj settings
  • Fixes App Store submission errors ITMS-90186 and ITMS-90062

Problem

The Info.plist file had outdated version numbers (1.0.1) while project.pbxproj was already updated to 1.1.0, causing App Store submission to fail with:

  • ITMS-90186: Invalid Pre-Release Train - The train version '1.0.1' is closed
  • ITMS-90062: Bundle invalid - CFBundleShortVersionString must be higher than previously approved version

Changes

  • Updated CFBundleShortVersionString: 1.0.1 → 1.1.0
  • Updated CFBundleVersion: 1 → 3

Note

In Xcode projects, version numbers can be set in both:

  1. Project settings (stored in project.pbxproj as MARKETING_VERSION and CURRENT_PROJECT_VERSION)
  2. Info.plist (as CFBundleShortVersionString and CFBundleVersion)

These should always be kept in sync. The project.pbxproj was updated but Info.plist was missed, causing the submission error.

🤖 Generated with Claude Code

Copilot AI review requested due to automatic review settings September 14, 2025 11:59
Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR synchronizes version numbers between Info.plist and project settings to resolve App Store submission errors. The version inconsistency was causing ITMS-90186 and ITMS-90062 errors during submission.

  • Updated CFBundleShortVersionString from 1.0.1 to 1.1.0
  • Updated CFBundleVersion from 1 to 3
  • Ensures Info.plist version numbers match project.pbxproj settings

Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.

@github-actions
Copy link

Code Coverage Report ❌

Current coverage: 0%

- Replace hardcoded version values with build variables
- CFBundleShortVersionString now uses $(MARKETING_VERSION)
- CFBundleVersion now uses $(CURRENT_PROJECT_VERSION)
- This ensures versions are always synchronized with project settings
- Fixes App Store submission errors ITMS-90186 and ITMS-90062
@graycreate graycreate force-pushed the bugfix/sync-info-plist-version branch from 31d5634 to e36d1d5 Compare September 14, 2025 12:01
@github-actions github-actions bot added size/XS and removed size/XS labels Sep 14, 2025
@github-actions
Copy link

Code Coverage Report ❌

Current coverage: 0%

@graycreate graycreate merged commit 8828fa8 into main Sep 14, 2025
6 of 9 checks passed
@graycreate graycreate deleted the bugfix/sync-info-plist-version branch September 23, 2025 15:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants