8

I’m trying to upload binary to iTunesConnect using Xcode8.3. There are around 10 cocoa pods (Alamofire, SideMenuController, DropDown etc) in my project.

However, while uploading I’m getting strange error related to bundle identifier.

iTunes Store operation failed. No suitable application records were found. Verify your bundle identifier ‘org.cocoapods.Alamofire’ is correct.

Screenshot

I tried some fix mentioned below :

  1. Renamed ‘org.cocoapods.Alamofire’ bundle id of Alamofire Cocoapods to com.companyName.AppName

  2. Renamed ‘org.cocoapods.Alamofire’ bundle id of Alamofire Cocoapods to com.companyName.AppName.Alamofire (Even registered new bundle id on iTunes Connect with com.companyName.AppName.Alamofire id)

  3. Deleted ‘org.cocoapods.Alamofire’ bundle id but reappeared

Any other quick fix?

Jayprakash Dubey
  • 35,723
  • 18
  • 170
  • 177

3 Answers3

3

I faced this situation two days ago and I solved it with simple steps:

1- go to iTunes Connect site

2- My Apps

3- press ( + ) sign and choose New app --> fill in all fields

enter image description here

4- then try to upload your app again.

aNaKuWaiTy
  • 235
  • 1
  • 2
  • 7
1

Deintegrate pods and then reinstall pods.

pod deintegrate && pod setup && pod install

Then create archive and upload it on iTunes connect.

Saurabh Bajaj
  • 473
  • 4
  • 7
0

Restarting my computer did the trick in my case.

  • This does not provide an answer to the question. Once you have sufficient [reputation](https://stackoverflow.com/help/whats-reputation) you will be able to [comment on any post](https://stackoverflow.com/help/privileges/comment); instead, [provide answers that don't require clarification from the asker](https://meta.stackexchange.com/questions/214173/why-do-i-need-50-reputation-to-comment-what-can-i-do-instead). – Tadhg McDonald-Jensen Sep 03 '21 at 19:57
  • Well, the actual question is "Any other quick fix?" – which is what I have provided here. – chosenandfree Jun 12 '22 at 21:47