Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cancel an iOS release

I created a new version for the iOS app to prepare for some release. For some reason, I need to cancel this release and create a new release(skipping some versions).

I don't see any option to cancel a release before submitting it to app store. Is there any way it can be done before submitting for review.

like image 306
kiran Avatar asked Jul 27 '17 13:07

kiran


People also ask

How do I delete a release from app Store?

You cannot delete a new version you have created from iTunesConnect before you have uploaded a binary. You can only delete full apps - before or after review. Apple give a fairly full description of what is going on here without saying explicitly that you cannot delete versions.

Can you rollback an iOS app update?

Connect your iDevice to computer > Launch iTunes > Click on the device icon. Step 3. Click the Apps tab > Choose the app you want to restore > Click Install > Then click Sync to transfer it to your iPhone. For 12.7 or higher version of iTunes, you can't find the old apps and get them back.


1 Answers

The cool thing about iTunes Connect is that it lets you edit most metadata for an app that hasn't been reviewed yet.

Updating Your App Version

First, click on your app version in the sidebar.

A screenshot of iOS app submission versions in the iTunes Connect sidebar

Then, scroll down. You'll see a textbox for your version number:

A cropped screenshot of the version and rating information in an iTunes Connect app entry

Just change that version to whatever version you want. The value in this text box is what is displayed to your users, but does not necessarily have to match the version number in your app's Info.plist.

Replacing an Uploaded Binary

If you've already uploaded a binary, you need to account for two things:

Version Numbers Your next upload needs to have a higher value for the Bundle Version (CFBundleVersion) than the previous binary, even if the "Short Bundle Version String" (CFBundleShortVersionString) is the same.

Binary Submission: You may have chosen your binary as part of your submission that you'd like to change. You may want to remove the old binary and attach your new one after it finishes processing.

If this is the case, hover over the build in the aptly named "Build" section of your entry to see the red removal icon.

A screenshot of removing a binary to change it to a different one

Click it to clear the old selection. Then, you'll be able to choose another binary.

When this Works

This only works for an app that has a state of "Prepare For Submission" or "Waiting for Review". If your app is waiting for review and you want to submit a new version, you'll see a banner at the top of that version's screen:

A screenshot of the iTunes Connect banner with a link to remove a version from review.

If your app is already submitted and approved, you'll need to submit a new version to the store.

like image 113
Moshe Avatar answered Sep 17 '22 22:09

Moshe