Reputation: 25
What should I do here? I am trying to submit a new version of app, but I am getting this error when I try to change version number from 1.0 to 1.1 in Xcode.
Upvotes: 1
Views: 4045
Reputation: 107
This might apply to someone out there.
If you have more than one Target under "Targets" to the left on the Xcode -> General page, you'd need to change the build version for all Targets as well.
Upvotes: 0
Reputation: 47284
You should also change your StickerPackExtension.appex
to version 1.1
as indicated.
It can either be changed through the Xcode
> General
tab (after selecting the extension target), or edit the extensions Info.plist
and change the CFBundleShortVersionString
to reflect the same version number that the main application has.
Upvotes: 2