No suitable records were found verify your bundle identifier is correct

IosXcode6App Store-Connect

Ios Problem Overview


I have created an app in App Store Connect and it has been in the "prepare for submission" state for more than 3 days. When I try to archive my app, and submit it to the app store it, displays this message:

> No suitable application records were found. Verify your bundle identifier is correct.

Ios Solutions


Solution 1 - Ios

Just found the Error. I used one capital letter in bundle id. but I have used small letters in Xcode's bundle id. now I changed that as like in the app id. and now I successfully uploaded my app to Appstore Connect.

Solution 2 - Ios

generally this happens when you have not created your app from apple developer account->iTunes Connect->Click on My App->click on plus sign (+)->New App->And fill up the whole info and Choose Your Bundle Id for the app you are uploading now.

Solution 3 - Ios

Just check that app you configured on iTuneconnect is having same bundle identifier that you are using to upload app.

URL: https://appstoreconnect.apple.com/apps

Solution 4 - Ios

iTunes Connect || App Store Connect (website):

In your browser, go to iTunes connect/ App Store Connect.

  1. Add your New App / edit your existing app.
  2. Go to App information.
  3. Check the Bundle ID name.
  4. If there is no bundle ID, make sure you create one.
  5. I used the WildCard bundle ID. That means, your complete bundle ID is likely to be com.organizationName.* and the suffix (exampleApp). Xcode:
  6. Go to your Workspace / Project.
  7. Go to your project.
  8. Select the General Tab.

Ensure the Bundle Identifier is the name you set in iTunes Connect.

For example: com.orgnanizationName.appName

It seems you have to start the App Store submission process in iTunesConnect.

App Store Connect Icon Add App

Solution 5 - Ios

What did the fix for me is to allow app access to all users:

  1. Go to AppStore Connect
  2. Go to My App
  3. Under Additional Information, click on 'Edit User Access'
  4. Select 'Full Access'
  5. This allowed me to upload the app the first time (via Xcode & Application Loader)

After the initial upload, i can switch back to 'Limited Access' and upload just fine.

Solution 6 - Ios

I believe you can found the answer here https://stackoverflow.com/questions/22278823/xcode-5-no-application-records-were-found-when-trying-to-validate-an-archive from @Bamsworld.

As you already mentioned and as per the documentation - App Distribution Guide

Important: You can’t validate your app unless the app record in iTunes Connect is in the “Waiting for Upload” or later state After you add a new app in iTunes connect there will be an amber light along with its status. It will most likely read "Prepare For Upload". To get it to the "Waiting For Upload" state click view details for the app and in the top right there should be a blue button that says "Ready to Upload Binary". Click this and follow the given directions.

Solution 7 - Ios

If you use Application Loader, then check if you are logged to the correct account. It was my case and it can happen if you manage account for various clients.

enter image description here

Solution 8 - Ios

In my case, I had 2 Apple IDs in my Xcode preferences (Xcode -> Preferences -> Accounts), so I had to remove one. After I removed Apple ID that I didn't need, validation process worked just fine.

Wasted a few hours, just because the error message is useless. This is so frustrating.

1

Solution 9 - Ios

Double check the Bundle OS Type code in your App's info.plist, for me, the only way around this error was to set it to APPL.

The weird thing is that the error was regarding to my frameworks bundle id, tho changing the above in my app solved it.

Solution 10 - Ios

Using Application Loader worked in my case.

enter image description here

Solution 11 - Ios

Chek your app ID in the Apple Developer Center. Then, use exactly the same name in Bundler Identifier.

Solution 12 - Ios

I have to manually sign the app. Created new certificate and new profile. Set code signing to Manual. Only then i was able to upload. Moreover select Manual sign in from organizer while uploading build.

enter image description here

Solution 13 - Ios

Once check this.

Open your .plist file and check for "Bundle OS Type code" key. If that is not there, add a row and give that key and check the type it should be a string. And give "APPL" as value.

Clean the project and go for Archive.

I hope it will work for you.

Solution 14 - Ios

I've changed the Version number but forgot to change the Build version. Changing the Build version resolved the issue. Such a silly mistake. Smh...

Solution 15 - Ios

Since this is question obviously has different potential answers depending on the individual circumstances I thought I'd add my problem and what solved it:

Problem: I had someone copy the binary archive, make some changes and then pass the binary onto me. This caused a binary conflict.

Solution: I had to create a new certificate. I copied the bundle ID from the develop consul, pasted into xcode and was able to upload.

Side note: You can regenerate a new bundle id by turning on "In-App Purchases" under Capabilities.

enter image description here

Solution 16 - Ios

After few days I realize that, I've set Bundle ID wrong.

Here is how I correct,

Go App Store Connect > Your App > App Information > General Information

Select the Bundle ID you create and assign at xcode before.

Now you can Upload without error.

Solution 17 - Ios

Firstly, check that you're using the same accounts in both Application Loaded (or XCode) and iTunes connect. Secondly, check that Bundle Id in error message and in iTunes connect are match, including tHe cAsE!

Solution 18 - Ios

if your bundle id carried a capital letter and you've changed it to a lower case letter, you must run the application in the simulator before attempting to archive and upload to app store connect (this was the issue and solution for me).

Solution 19 - Ios

For me, what fixed it was to enter the required details in App Store Connect -> TestFlight -> Test Information.

Once I'd done that it seemed that Xcode realised there was a new app to allow uploading to and succeeded.

(Also check your caps in your Bundle ID though. )

Solution 20 - Ios

iMessage Extension: For everyone that is fighting with this problem with an messages extension (or any other extension) make sure you enter in "App Store Connect" -> "General Information" -> the Bundle-ID of the application target and not the extension target. We fought 2 days to find this out.

Solution 21 - Ios

For me : Just tried uploading using Application Loader and it worked

Solution 22 - Ios

If after you confirm your Bundle ID's match across App Store Connect, Apple Developer Portal, and Xcode and you are still having issues try this:

Remove the Apple ID associated with the Bundle ID you're experiencing issues with from your Accounts list in Xcode (Menu Bar -> Xcode -> Preferences -> Accounts). Then, add the Apple ID back to the Accounts list in Xcode.

Solution 23 - Ios

Make sure this is included in your Info.plist:

<key>CFBundlePackageType</key>
<string>APPL</string>

I had APPL misspelled as AAPL. Once I fixed that and signed into Application Loader and Xcode with the same Apple ID, everything worked.

Solution 24 - Ios

For me, it was because I forgot to create a "Provisioning Profile" on Apple developer portal. I created a profile here for "App Store", then downloaded and opened the file and it worked!

Solution 25 - Ios

In my case I got it worked with opening the Application Loader inside the XCode.

Steps : XCode -> Open Developer tool -> Application Loader

When I opened it with Launchpad it failed to identify the correct account for the app. Therefore, it asked me to create an account.

With XCode , Application Loader could list down the accounts I'm entitled for. You have to select the correct account from the drop down.

Solution 26 - Ios

Make sure you follow these steps in order:

  1. Generate the App ID at https://developer.apple.com/account/ios/identifier/bundle

  2. Generate your app from iTunes Connect selecting the Bundle ID created in step one

  3. Upload the IPA from Application Loader or XCode

Solution 27 - Ios

In my case the app was already set up, but the app version was already in use (waiting for review), I just needed to increase the version number.

Solution 28 - Ios

In my case the problem was that my application had literally no information filled in the App Store Connect

Solution 29 - Ios

In my case I was using a different account, I created an app on Itunes but selected different account on Xcode. So just Selected the right account on Xcode and it worked for me.

Solution 30 - Ios

In my case

  • Checked if same user in itunes and xcode
  • Checked bundle ID is same

Solution:

Go to itunes inside the page of my app and inside the first tab "App Information" under the right hand side has a section "Others Information" click on the "edit user permission" and grant xcode user the permission to read the information of the app.

DONE

Solution 31 - Ios

When changed a project name from HelloCordova to that one I wanted I encouraged this problem. Even though in PROJECT_NAME -> General -> Bundle Identifier as well as in PROJECT_NAME -> Build Settings -> Product Bundle Identifier I changed it as it should be still had the same error. What solved the problem was simply to open a different editor and look for this string PRODUCT_BUNDLE_IDENTIFIER and changed all the names I don't want to the correct ones. Apparently Xcode takes the bundle identifier also from somewhere else than these 2 locations.

Solution 32 - Ios

Had this happen to me and my case was an odd one.

I had multiple accounts added in Xcode, but only when i added my private account to the job-team in addition to the job-account, i encountered problems.

Turns out that xcode somehow checked for permissions with my private accounts who only had a customer-support role and not a developer role. It completely ignored my work-account that had the developer role.

Solution was to remove the account which lacked permissions, so that xcode used the proper account.

Solution 33 - Ios

After hours of frustration I came across this article....

https://stackoverflow.com/questions/7688379/does-bundle-id-need-to-be-case-sensitive

Hope this helps someone having the same issue as me.

Solution 34 - Ios

if your app transfer other account. You should rearrange Signing section for the corrcet team(new team)

Solution 35 - Ios

I got the error when uploading a React Native Expo bundle to Apple App Store Connect using Transporter. The problem was that I had transferred the app from my personal account to our company account but forgot to sign into our company account in Transporter.

Click the profile icon in the top right corner and sign in to the correct account that you are using in your bundle.

enter image description here

Solution 36 - Ios

  1. First login your developer account.
  2. Check your bundle identiifer correctly
  3. Then Check in your app store connect the new app is create or not as the same bundle identifier (is the main error)
  4. Choose your correct bundle identifier to create new app.
  5. Now you upload your app it get success.

Solution 37 - Ios

If you tried all the above and it did not work for you simply ensure the Identifier name matches with that of your app name.

Example: Let's say my identifier name is VictorDominic and my identifier is com.company.victordominic your app name should be VictorDominic if not you will get the above error.

Please take note of the casing. If your identifier name is Victordominic and your app name is VictorDominic you will still get this error.

Solution 38 - Ios

For me, I did all this but doesn't solve the problem so all I had to do is to assign the right bundle on the apple store connect ( the bundle id that is already exist in the IPA file ) enter image description here

Solution 39 - Ios

Check Requires full screen is enabled or not. If not enable it.

You can find that option in the below steps.

Targets -> General -> Deployment Info -> Requires full screen.

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
QuestionRagulView Question on Stackoverflow
Solution 1 - IosRagulView Answer on Stackoverflow
Solution 2 - IosAviView Answer on Stackoverflow
Solution 3 - IosGauravView Answer on Stackoverflow
Solution 4 - IosRoger PerezView Answer on Stackoverflow
Solution 5 - IosZaim RamlanView Answer on Stackoverflow
Solution 6 - IosBetoView Answer on Stackoverflow
Solution 7 - IosAdam M.View Answer on Stackoverflow
Solution 8 - IosIgor KharakhordinView Answer on Stackoverflow
Solution 9 - IosHeestand XYZView Answer on Stackoverflow
Solution 10 - IosLuat Vu DinhView Answer on Stackoverflow
Solution 11 - IosIlan OlkiesView Answer on Stackoverflow
Solution 12 - IosAmmar MujeebView Answer on Stackoverflow
Solution 13 - Iosvinod neelojuView Answer on Stackoverflow
Solution 14 - IosGowthamView Answer on Stackoverflow
Solution 15 - IosAus_10View Answer on Stackoverflow
Solution 16 - IosmsalihbindakView Answer on Stackoverflow
Solution 17 - IosMike KeskinovView Answer on Stackoverflow
Solution 18 - IosOmar Al-EisaView Answer on Stackoverflow
Solution 19 - IosBaza207View Answer on Stackoverflow
Solution 20 - IosBaran EmreView Answer on Stackoverflow
Solution 21 - IosSiempayView Answer on Stackoverflow
Solution 22 - IosDaniel StormView Answer on Stackoverflow
Solution 23 - IosLuke RedmoreView Answer on Stackoverflow
Solution 24 - IosgafiView Answer on Stackoverflow
Solution 25 - IosNavodaPView Answer on Stackoverflow
Solution 26 - IosAgu DondoView Answer on Stackoverflow
Solution 27 - IosgimixView Answer on Stackoverflow
Solution 28 - IosAntoineView Answer on Stackoverflow
Solution 29 - IosNasir KhanView Answer on Stackoverflow
Solution 30 - IosJacky ChongView Answer on Stackoverflow
Solution 31 - IosDaniel DanieleckiView Answer on Stackoverflow
Solution 32 - IosKrister BerntsenView Answer on Stackoverflow
Solution 33 - IosCari95View Answer on Stackoverflow
Solution 34 - IosEmre GürsesView Answer on Stackoverflow
Solution 35 - IosIanView Answer on Stackoverflow
Solution 36 - IosVinothVView Answer on Stackoverflow
Solution 37 - IosvhiktordomView Answer on Stackoverflow
Solution 38 - IosAmrView Answer on Stackoverflow
Solution 39 - Iosvinod neelojuView Answer on Stackoverflow