1
votes

I am uploading my IPA file to app store and it throw me below error:

ERROR ITMS-90062: "This bundle is invalid. The value for key CFBundleShortVersionString [3.0.0] in the Info.plist file must contain a higher version than that of the previously approved version [3.0.1]."

Below is my config for IOS:

 "ios": {
      "bundleIdentifier": "com.test.test.test",
      "buildNumber": "5",
      "icon": "./assets/images/test.png",
      "config": {
        "googleSignIn": {
          "reservedClientId": ""
        }
      },
      "infoPlist": {
        "NSLocationWhenInUseUsageDescription": "Your current location will be displayed on the map and used for directions, nearby search results, and estimated travel times.",
        "CFBundleShortVersionString":"3.0.3",
        "CFBundleIdentifier": "com.test.test.test"
      }
    }
4

4 Answers

2
votes

If an app version[3.0.3] is already approved then you have increase the version number[3.0.4]. If you increase the build number you will get the same error.

2
votes

You have to reject the build in iTunesConnect and submit a new build with a higher build number

1
votes

Looks like app store was picking up the version from my package.json file which had a version key.I updated it to 4.0.0 and it worked successfully.Some issue with the expo cli I guess.

0
votes

Try to change the buildNumber and make it higher than 5.