How to verify Bundle ID is correct

When trying to validate my Mac app, I get the "App Store Connect Operation Error: No suitable application records were found. Verify your bundle identifier "MyLirstName-MyLastName.FirstAppNameLastAppName" is correct.


Here is what I have.


BuildSettings: Product Bundle Identifier MyLirstName-MyLastName.FirstAppNameLastAppName

Product Name FirstAppName LastAppName

info.plist: Bundle identifier $(PRODUCT_BUNDLE_IDENTIFIER)


Apple.com Certificates Identifiers & Profiles: App ID for FirstAppName LastAppName

MyFirstName-MyLastName.FirstAppNameLastAppName


In other words it's a perfect fit. What else should I look at?


Thanks.

Replies

Please ignore the typo in the Build Settings line above.

I'd be curious what a live Info.plist file read would say - that would help to at least confirm the macro is participating.


See the version example here: h ttps://www.hackingwithswift.com/example-code/system/how-to-read-your-apps-version-from-your-infoplist-file


Still no joy, you might hardcode it, being sure to perform an option-clean build folder each time you make that sort of project change.

I've gone through this recently, can be nightmare.


have a look at your AppID:

- click Account at the top of this page

- select Certificates

- select AppID in Identifiers on the left

- - select the App and look if the Bundle ID (mid page) is matching with the one in Build settings.

thank you, I did not know how to edit bundle ID's until I saw your post