How to delete app Build in New iTunes Connect Site?

IosIphoneIos9App Store-ConnectItunes

Ios Problem Overview


I want to upload my app's new version on iTunes connect, but I can't submit it as I mention here.

Now I want to delete uploaded build and upload new build with save version, but I get an error as shown in the screenshot. here

Find Solution Here

you can't delete old uploaded build.you have to upload new build with new build(+1) version.

Ios Solutions


Solution 1 - Ios

You can't delete old uploaded build: you have to upload new build with a new build version (== Bundle version in plist).

For example, if your current build version is 1.3, archive & upload a new build with an incremented build version like 1.3.1:

![image][1]

[1]:https://s2.postimg.cc/as0kr70sp/Screen_Shot_2014_11_12_at_5_13_24_pm.png "imagw"

Solution 2 - Ios

You cannot delete a Build from Itunes Connect. Your project info file contains two attributes for referencing the Build version of your app, i.e., Bundle version and Bundle versions string, short. Usually both attributes have the same value (1.0.3) but you can upload to the Itunes Connect multiple Builds for the same version of the app just changing the second value.

So, you create a new version of the app in Itunes Connect (version 1.0.3) and set in your NewProject-Info.plist:

  • Bundle version: 1.0.3.
  • Bundle versions string, short: 1.0.4.

Archive and upload.

Once Itunes Connect processes the new Build, it will appear in the Pre-Releases section and you will be able to select it for the 1.0.3 version and send it for review.

Solution 3 - Ios

The new version of the iTunes Connect App for iOS devices does not seem to have the "Reject Build" capability as did previous versions of the app and the iTunes Connect Portal. You cannot reject or delete builds uploaded to iTunes Connect in the latest versions (Dec 2014).

The solution is to just upload a new build. However for iTunes Connect to accept the new build, you must first increment an internally visible build number before recreating the archive. The number to increment is labeled "Build" or "Bundle Version" depending on where you look in the Xcode interface. A change in one location obviously is reflected in the others.

Here are the locations where you can change the Build/Bundle Version number:

General > "Build: 1.0.1"

-or-

Info > "Bundle Version: 1.0.1"

-or-

Info.plist > "Bundle Version: 1.0.1"

Once the number is changed, re-archive the build and re-submit it to iTunes Connect.

Solution 4 - Ios

I'm not sure that there's a way to delete a build, but updating the Build Number and re-submitting worked for me.

https://stackoverflow.com/questions/25680604/error-itms-9000-redundant-binary-upload-there-already-exists-a-binary-upload

Solution 5 - Ios

Edit: You just can't. I imagine you will have one chance per year to clean up builds like they do with registered devices, or maybe they just plan to keep them there forever.

Check Apple's response from this thread: https://stackoverflow.com/questions/25767777/how-to-remove-a-build-from-itunes-connect

Solution 6 - Ios

I don't think there is a way to delete a build just like Mark Philip said. I am using Xamarin. I fixed my problem by doing this in Xamarin: project -> options -> IOS Application -> build

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionhmdeepView Question on Stackoverflow
Solution 1 - IoshmdeepView Answer on Stackoverflow
Solution 2 - IosDaniel RiveraView Answer on Stackoverflow
Solution 3 - IosJohn ChachoView Answer on Stackoverflow
Solution 4 - IosMark PhillipView Answer on Stackoverflow
Solution 5 - IoselaView Answer on Stackoverflow
Solution 6 - Iosuser1019042View Answer on Stackoverflow