0

My app has been waiting for review for more than 8 hours now. I want to reject the current binary and submit a new binary but the "Reject this binary" link fails to appear. I tried to delete the browser cache, cookies but that dint help. Tried using firefox, safari and chrome with no success. Even the iTunes connect mobile app does not provide me the reject this binary button.

I found similar threads here like this one - reject this binary in new itunes connect UI but those people were able to reject their binaries through the mobile app unlike me.

Anyway knows how I can fix this?

This is what I see on my iTunes Connect page enter image description here

Community
  • 1
  • 1
tbag
  • 1,268
  • 2
  • 16
  • 34

1 Answers1

1

In the "Build" section of the page "Versions":

  1. Right click on the current version
  2. Inspect Element
  3. Remove "ng-hide" from the class of the tag: <a href="" class="deleteIcon ng-binding ng-hide" ng-show="versionInfo.preReleaseBuildVersionString.isEditable" ng-click="removeBuild()"></a>
  4. Click Remove
  5. Select new build
  6. Save

Seems like, the method removeBuild() has no any checking of the isEditable value.

L1TR
  • 11
  • 2
  • Are you suggesting that they should edit the web page? Not sure that actually answers the OP question – Flexicoder Jan 06 '15 at 16:03
  • These actions allows to remove/change current build after sending application to the review. I had the same problem and I just shared my solution :) – L1TR Jan 07 '15 at 00:46