I have a project for which I get:
"App Store Connect Operation Error"
"No suitable application records were found. Verify your bundle identifier 'XXX.XXX-XXX' is correct."
However, the store listing exists and if my coworker does the upload it works fine.
We have no idea how to get it to work from my computer. Other projects seems to work fine.
Additional information:
So far the store listing exists, but only available on test flight.
We have tried upgrading my XCode to be the same version as my coworker's.
We have tried editing my account details in my xcode. We gave up on that and then added my coworker's account details as well (weird, I know, but we are getting desperate).
I havent made a change to the project, I simply download and archive + upload and then i get this error.
Please, any hints or ideas would be great!
OK, so it turns out the problem was that one of the accounts (under XCode > Preferences > Accounts), did not have permissions to this particular app. What is weird, though, is that the four other accounts here DID have access permissions to this app. We aren't sure how XCode decides which account to try and use - but after giving that particular account the correct permissions, everything worked fine.
Will investigate more and maybe update this answer in the future - but, there you have it. Maybe it helps someone else in the future.
We tried to submit a new build to iTunesConnect for updating an existing application. It is a quick patch for fixing one server url.
We changed two files: REST.plist for updating one server url and app_info.plist for updating the bundleShoreVersion String from 4.0.0 to 4.0.1 and BundleVersion from 4000000 to 4000001.
The 4.0.0 version was submitted three weeks ago without any issue.
However, we got rejected with Invalid Binary with 4.0.1 version and following email was sent to us:
Dear developer,
We have discovered one or more issues with your recent delivery for
"xxxxx". To process your delivery, the following issues must be
corrected:
The bundle uses a bundle name or display name associated with an Apple
app.
Once these issues have been corrected, go to the Version Details page
and click "Ready to Upload Binary." Continue through the submission
process until the app status is "Waiting for Upload." You can then
deliver the corrected binary.
Regards,
The App Store team
Any help will be truly appreciated.
This is explained right here:
The bundle uses a bundle name or display name associated with an Apple app.
This is likely a new automated check, and that's why your previous versions went through with no problems before.
It's saying that your app is using a display name (the name below the icon on the homescreen) that an app made by Apple uses - for example, if the label said "Mail", then you could expect it to be rejected for this reason.
Change your app name to something Apple doesn't use in their apps.
To resolve this issue, note that the values for both of these fields must be unique in your Info.plist file:
Bundle display name (CFBundleDisplayName)
displayed below icon on home screen
Bundle name (CFBundleName)
defaults to PRODUCT_NAME, used internally, e.g. in filename like MyApp.app
That is, your CFBundleDisplayName can be as unique as you want, but if your CFBundleName isn't, your upload will continue to fail.
Don't use the name like fitness its most common name try with different one. It's saying that your app is using a display name
you can resolve this issue by
1: Changing the app display name
OR
2: Change Target and scheme name.
My problem was related to the app name that was the same as a app native system.
Ex .: Safari
Change the name and build again
I'm trying to upload an iOS app for review using Xcode's Organizer and I've encountered two problems:
Case 1
Binary uploads but when I press Submit for Review iTunes Connect gives the error:
Your app information could not be saved. Try again. If the problem
persists, contact us.
Case 2
After getting the first error message, I tried uploading a new binary, but got the following error message in Organizer:
ERROR ITMS-9000: "Redundant Binary Upload. There already exists a
binary upload with build version '1.1' for train '1.1'"
I tried uploading other binaries changing the version number but still I can't get my app to go in the review state. I also can't see any way to delete old binaries that were uploaded.
Another observation: My app should be around 30MB but when I look at the uploaded binary it is only 1.46MB. I guess there might be something wrong from the binary but I've built it using the same technique several times before and never had any issues.
Any ideas?
For me, I was filling out the form in Safari and getting the error. I logged out, then switched to Chrome and signed in. This fixed the error, and I was able to submit.
Sign out and Sign In again should work as it worked for me!
I solved this by increasing the number in Build (Select the Target, then Xcode -> General -> Build, see picture) by adding .1 so the build was 3.75 -> 3.75.1.
But only for the Build, the Version is still 3.75 and also appears like that in iTunesConnect.
Then the new binary uploaded and I could select it for review. In the picture below you may see the old and the new binary listed in iTunesConnect. Then I finally just had to select the new binary and submit for review.
Open web inspector, you will find that Apple said: We've got a server error ... 500
That's the real reason. :)
Update:
Inspired by #phantom, I try to use dotjs to run a javascript script to auto click submit button per 15 seconds, but still get the 500 error all the time.
#Geaka's answer is working for me. Because my product name is Chinese,I change my product name to english(DO NOT include whitespace! It maybe causes another error on building path error.)
I debug the apple website and find a js script named submit_for_review_cntrl.js which controls the whole submit progress. From line 123 to line 129(formatted by {} button in chrome) that setting the http headers, there is a field named X-Original-Filename, the value is given by $scope.addCcatFileToJson method in line 138, the param of this method is given by ajax callback, i guess there's a bug for encoding the product name field of the back-end code.
WTF Apple!
We just solved our version of the problem (generic error message)...
After hitting submit for review I was trying to upload a file for the ERN since my app uses encryption. It finally worked when I used a zip file that contains an image of the ERN response and a txt file describing what encryption is being used.
The problem unfortunately still occurs. My solution when this happens is removing the binary, clicking on the save button then adding the binary again. Then save and follow the standart procedure. That solves the problem for me without changing the build version or doing anything extra.
Finally find the solution:
Steps:
If your app version and build version is 1.0, keep version 1.0 and change build version as 1.1(bigger than last build version), then upload it.
If your app name is English, choose this build and submit to review, it would be change to review.
If your app name is not English, Chinese for example, you need to name it in Bundle display name,
Do not name it in TARGETS directly.
Maybe is also works for Japanese and Korean.
I solved this by switching over to Chrome instead of using Safari. Presto, worked right away!
I have met this problem this morning and have solved it. I change my product name from Chinese to English, and write the Chinese name in the Bundle display name, which solve this problem.
You can change the Bundle display name in the info.plist, and change the product name in the General tab in the project.
that's an erratic error. Probably some apple infrastructure problems You may have done something and then it worked - switching your browser, increasing build numbers and the like. But you could've hit several times submit as well. At least, after a while, my submission has been successful.
I opened the iTunes connect on my iPhone , and was able to submit sucessfully via iOS safari. I don't know why.
You will need to change the Build version. Create 1.2 build for version 1.1 of your app. Then upload your binary. After few minutes (on processing) you'll find new build to submit for rewiew.
I spent 2 hours !!!
Finally, i found the solutions. The main culprits is your PRODUCT NAME, it must be in English!
Go to build setting --> packaging --> change your product name into English
Change your "BUndle Display Name" to your desire localized name
Increase your build version and re-upload
This time you're fine!!!
I was plagued with these errors over and over when adding new screenshots.
Nothing seemed to help.
Then I visited iTunes connect in Safari (I normally use Chrome) and somehow all errors went away.
Maybe related to a Chrome browser extension like AdBlock?
TLDR; use Safari for iTunes Connect
I experienced this submitting an update today to my app. For about 30 minutes I retried and received the same error. I tried, removing the binary, signing out, I also rebuilt the binary with an incremented "Bundle Version String".
None of these steps made any difference, but I continued to retry, continued to get the same error, and eventually it accepted the submission.
I don't believe any of these solutions I tried made any difference. I believe there was some internal error on itunesconnect. As the message suggests, I think all you should do is try again later...
I only need to clear all my cookies, instead of switching browser.
Switch the browser you are using & then remove the build, save that once & then again add the build to it & then again save it. After that click on submit for review & it will work perfectly.
After 3 day, Itunes accept my first binary. I have tried to change my Bundle Display Name to English then tried to change to keep version 1.0 and change build versiyon to 1.2. Tried a lot of think and after 3 days surprise!!! Apple accept
I also got this error. Solution I found was to change contents in "Name" section of app description in iTunes Connect.
There was no need to change app name to English language (as some suggest), I just removed ":" character from app name - and then I could submit it to review! My localized versions of application still contained non-English names.
Had the same problem since my application name contains ":". The iTunes connect server returns 500 error because of it. I've just temporary removed ":" from English app title, submitted app and returned ":" back.
I think it ended up being a combination of several factors, but one thing that was definitely wrong was that I hadn't clicked the box about posting info to the Korean store. This was off by default and needed to be clicked. After doing this and several version changes (ended up submitting 1.2 instead of 1.0!) my app finally went into "waiting for review...".
Tried all possible solutions Chrome and Safari; none of them worked.
Then I switched to Firefox and magically it went through.
I found the simple solution. Just go to detail of the version, remove the current build then save.
Then click on the blue add button and add the current build again, save again. Then submit again.
It work for my case. Hope it helps
Log out from the iTunes from the current browser. and Login to iTunes from the another browser and try to submit the app.
Hope it works!
And Make sure that there should not be the Redundant binary (in other words the build number of the binary should not same).
I've just had the same problem.
Switching browsers to Chrome fixed it for me straight away, so will try clearing out Safari, and re-booting in order to get back to submitting with Safari.
#rayg - and for the sake of others - the Korean checkbox doesn't have to be checked in order to succeed in getting the app up for review. Maybe under certain circumstance it does have to be selected, so I'm not saying your solution to your scenario is wrong, but the post gave the impression that it's a requirement for every submitted app, which it isn't.
I have tried above all recommended solutions but none of them worked for me .
Then I select build version from my mac system and logged itunes connect using firefox from window system and it worked for me.
Or you can try itunes connect login from another Window/Mac system.
We tried to submit a new build to iTunesConnect for updating an existing application. It is a quick patch for fixing one server url.
We changed two files: REST.plist for updating one server url and app_info.plist for updating the bundleShoreVersion String from 4.0.0 to 4.0.1 and BundleVersion from 4000000 to 4000001.
The 4.0.0 version was submitted three weeks ago without any issue.
However, we got rejected with Invalid Binary with 4.0.1 version and following email was sent to us:
Dear developer,
We have discovered one or more issues with your recent delivery for
"xxxxx". To process your delivery, the following issues must be
corrected:
The bundle uses a bundle name or display name associated with an Apple
app.
Once these issues have been corrected, go to the Version Details page
and click "Ready to Upload Binary." Continue through the submission
process until the app status is "Waiting for Upload." You can then
deliver the corrected binary.
Regards,
The App Store team
Any help will be truly appreciated.
This is explained right here:
The bundle uses a bundle name or display name associated with an Apple app.
This is likely a new automated check, and that's why your previous versions went through with no problems before.
It's saying that your app is using a display name (the name below the icon on the homescreen) that an app made by Apple uses - for example, if the label said "Mail", then you could expect it to be rejected for this reason.
Change your app name to something Apple doesn't use in their apps.
To resolve this issue, note that the values for both of these fields must be unique in your Info.plist file:
Bundle display name (CFBundleDisplayName)
displayed below icon on home screen
Bundle name (CFBundleName)
defaults to PRODUCT_NAME, used internally, e.g. in filename like MyApp.app
That is, your CFBundleDisplayName can be as unique as you want, but if your CFBundleName isn't, your upload will continue to fail.
Don't use the name like fitness its most common name try with different one. It's saying that your app is using a display name
you can resolve this issue by
1: Changing the app display name
OR
2: Change Target and scheme name.
My problem was related to the app name that was the same as a app native system.
Ex .: Safari
Change the name and build again