2
votes

How can I change the apple app version which is build using react native.

I got this email from apple app store -

Dear Developer,

We identified one or more issues with a recent delivery for your app, "APP_NAME" 1.0 (1.0.2). Please correct the following issues, then upload again.

ITMS-90062: 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.1]. Please find more information about CFBundleShortVersionString at https://developer.apple.com/documentation/bundleresources/information_property_list/cfbundleshortversionstring

Best regards,

The App Store Team

3

3 Answers

2
votes
  • Open your app in Xcode by going to ios directory in your project either there is .xcworkspace double click that or .xcodeproj double click that.

  • Now follow image steps click on 1 then 2 and 3 is where you will change it. enter image description here

0
votes

navigate to your project then iOS folder open your project name.xcworkspace like that and change build number or version number

enter image description here

0
votes

Go To info.plist, find CFBundleShortVersionString, set its <string> value with your expected value:

<key>CFBundleShortVersionString</key>. 
<string>1.0.0</string>