상태가 검토 대기중인 2 진 거부 (2 진 거부 단추를 찾을 수 없음)
검토 대기중인 바이너리를 거부하고 싶습니다. 개발자 안내서에 지정된 경로로 이동 하면 바이너리를 거부하는 버튼을 찾을 수 없습니다.
iTunes 연결의 '내 앱' 에서
- 응용 프로그램을 클릭 한 다음
- '버전' 탭에 있고 올바른 버전이 선택 되어 있는지 확인하십시오 .
- 정보 풍선에있는 '검토에서이 버전 제거'를 클릭하십시오 .
아래 참조
몇몇 사람들이 @ThomasRS의 승인 된 답변에 대해 댓글을 달거나 의견을 밝혔으므로 어떤 이유로 든 내 앱의 상태가 "검토 대기 중"이었지만 "새 빌드를 제출하려면 검토에서이 버전을 제거해야합니다"가있는 파란색 막대 메시지가 내 앱의 "검토 대기 중"버전 페이지에있는 iTunes Connect 웹 사이트에 나타나지 않았습니다.
그러나 iTunes Connect iOS 응용 프로그램 에서 "이 바이너리 거부"링크가 표시되었습니다 .
해당 페이지에 액세스하는 단계 :
- iOS 기기에서 iTunes Connect 앱을 엽니 다.
- 메시지가 표시되면 iTunes 자격 증명으로 로그인하십시오.
- 제품 탭을 엽니 다 (아래쪽).
- 응용 프로그램을 누릅니다.
- 해당 화면에서 "이 바이너리 거부"를 누릅니다.
2014 년 9 월 12 일 현재 재 설계로 변경되었습니다.
Open the App Details page for the app, as described in To open the App Details page for an app.
On Versions, above the app's metadata, this message appears: "You can only edit all information while your version is waiting for review. To submit a new build, you must remove this version from review." Click "remove this version from review"
See: Viewing and Changing Your Apps Status and Availability
After the changes in iTunesConnect Portal, Here are the new steps:
- Login to iTunes Connect.
- Click on My Apps option.
- Select app for which you want to reject binary.
- Select the version from the left side.
- Reject binary (visible on right side)
You just need to click on remove this version from review (denoted by arrow in above image)
In my case the link to reject appeared after 5-10 minutes after submit, so try to wait 10 minutes.
I went through the struggle of this as well. I tried everything StackOverflow told me nothing worked. So I did some digging on the site itself and this worked for me.
- Right click the site in chrome and click "inspect".
- Click "Elements"
- Search for "showDevRejectModal".
- Double click the class parent of this element where it says "ng-modal ng-isolate-scope ng-hide".
- Delete the "ng-hide".
You may reject your binary at any time. It will be removed from the review queue and you will go to 'the back of the line' as it were if/when you resubmit your app for review.
From the Developer Guide (log in required):
When the status of your app is... In Review...you can reject the binary you have submitted by clicking Reject Binary from the Binary Details page...
From the new version of iTunes connect, here is what you have to do:
login to iTunes connect. Go to my apps and click on the app for which you wish to reject binary.
In the app details page you will see a particular section, in the Versions tab:
Click on the link 'remove this version from Review'
Once you do that, go to the Build Section of your app - you will see a '-' button when you hower over the mouse above the version number.
Click on the '-' button and your build is removed from the Review Queue.
Pl. note - every build that is removed, will result in further delay to the app- approval time, as your queue position is lost!!
Or you can remove it in Build section.
제 경우에도 "거품 거부"가 나타나지 않았습니다. 웹에서 검색하는 동안 아래의 API 요청을 사용하도록 제안하는 이 스레드를 발견 했습니다. 브라우저에서 링크를 붙여 넣고 iTunes 페이지를 다시로드 한 후 버블이 나타나 바이너리를 거부 할 수 있습니다.
https://itunesconnect.apple.com/WebObjects/iTunesConnect.woa/ra/app/[app_id]/versions/[version_id]/reject
위 요청에서 앱의 [app_id] 및 [version_id]를 사용해야합니다.
최종 요청을 실행하면 트릭을 수행해야합니다 (최종 문자열을 올바른 app_id 및 version_id와 함께 브라우저의 주소 줄에 붙여 넣으면 작동합니다)
이 옵션이 다른 사람에게 도움이되기를 바랍니다.
'Programming' 카테고리의 다른 글
virtualenv 폴더 이름을 바꾸지 않고 이름 바꾸기 (0) | 2020.06.05 |
---|---|
build.gradle에서 기본적으로 Android Studio는 어떤 제품 맛을 빌드합니까? (0) | 2020.06.05 |
파이썬 형식 문자열에서 % s는 무엇을 의미합니까? (0) | 2020.06.05 |
파이썬에서 디렉토리의 내용을 어떻게 나열합니까? (0) | 2020.06.05 |
C ++ 문자열 (또는 char *)을 wstring (또는 wchar_t *)으로 변환 (0) | 2020.06.05 |