[solved] Where to change the Bundle ID or how to make it autoincrement (iOS)

Hello

I am tring to deploy an App for second time in Apple Connect and I get this error

The provided entity includes an attribute with a value that has already been used The bundle version must be higher than the previously uploaded version: β€˜1’

Where can I change the Bundle version or how can I make it autoincrement?

Thanks

I have modified Info.plist

It had

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

It has now

<key>CFBundleShortVersionString</key>
<string>$(MARKETING_VERSION).$(CI_BUILD_NUMBER)</string>
<key>CFBundleVersion</key>
<string>$(CI_BUILD_NUMBER)</string>

And looks like now Apple Connect doesnΒ΄t complain about the repeated Bundle ID.

1 Like

That works. You can also use Trapeze.