Home > database >  Xcode is not archiving to the specified version number
Xcode is not archiving to the specified version number

Time:09-22

This is what my Xcode screen looks like before archiving

enter image description here

This is what shows up in the Organizer after archiving:

enter image description here

I recently had done an upgrade to my Mac which I think was because of iOS 14. Any idea what could be going on here?

CodePudding user response:

I don't know why, but I also had the problem after the xcode 14 version update.

In my case, it was solved by modifying the version in "Info" tap without changing the version in "General" tap on xcode setting.

.

<Custom iOS Target properties on "Info" tap>

  • Bundle version string (short) <<< version
  • Bundle version <<< build number

CodePudding user response:

open info.plist to source

and change this

<key>CFBundleShortVersionString</key>
<string>$(MARKETING_VERSION)</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
  • Related