Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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?

like image 767
Jayprakash Dubey Avatar asked May 30 '17 06:05

Jayprakash Dubey


2 Answers

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.

like image 130
aNaKuWaiTy Avatar answered Nov 10 '22 12:11

aNaKuWaiTy


Deintegrate pods and then reinstall pods.

pod deintegrate && pod setup && pod install

Then create archive and upload it on iTunes connect.

like image 27
Saurabh Bajaj Avatar answered Nov 10 '22 12:11

Saurabh Bajaj