2

I’m having trouble getting iTunes Connect to recognise a new Bundle ID. On the iTunes Connect Developer Help page, in step 4 it says

Bundle ID shows two options: Choose and Xcode: iOS Wildcard AppID - *

This is the step I'm missing. I found no way to enter the app Bundle ID as shown here.

enter image description here

Underneath the text window I clicked the link in Register a new Bundle ID on the Developer Portal which creates the new certificate. I then Build for a Generic iOS Device and when I tried to validate the certificate got this message

iTunes Store operation failed. This bundle is invalid. The value for key CFBundleShortVersionString [1.0] in the Info.plist file must contain a higher version than that of the previously approved version [1.0].

Obviously it is invalid as I never got past step 4 to complete the form for the first app record. I tried logging out of iTunes Connect and logging in again and yes, the certificate was there (highlighted). The form just doesn't recognise it (and yes, I tried the other one).

Has anyone else seen this ?

enter image description here

Greg
  • 1,750
  • 2
  • 29
  • 56
  • Please paste a screenshot showing the AppID (with bundleID) from your app in developer.apple.com and from the dialog to create a new app in itunesconnect . – Fabio Berger Aug 21 '17 at 11:35
  • Fabio, as requested. – Greg Aug 21 '17 at 11:54
  • I recommend you to create an explicit AppID for your app. [Documentation](https://developer.apple.com/library/content/documentation/IDEs/Conceptual/AppDistributionGuide/MaintainingProfiles/MaintainingProfiles.html) Then you can select this new AppID in iTunesConnect – Fabio Berger Aug 21 '17 at 12:12

1 Answers1

1

iTunes Store operation failed. This bundle is invalid. The value for key CFBundleShortVersionString [1.0] in the Info.plist file must contain a higher version than that of the previously approved version [1.0].

I had same problem when i submitted my app second build with version number "1.0". In next build, I forgot to change version number from "1.0" to "1.1" and got this error.

I changed my new version to be "1.1" and the submission worked.

  • Abhishek, that would be right for the next version. Mine is a new app – Greg Aug 21 '17 at 11:35
  • I've accepted it as the correct answer even though unfortunately it won't fix my current problem which was caused by deleting the previous version. – Greg Aug 26 '17 at 04:48