I created the iOS application identifier in the iOS Development Center in the "Certificates, Identifiers and Profiles" section and enabled it for in-app purchases. Let them say that his name is App , and id is com.example.app .
If I look at the corresponding app "Opportunities for in-app purchases" in Xcode 5.0.2, the tool indicates an error and offers "Add app purchase rights to your app identifier" in the form of the "Fix the problem" button. If I click the button, I will get this error message:
The application identifier with the identifier "com.example.App" is not available. please enter another line.
How can I solve this problem? The identifier com.example.app seems to be inferred from the identifier of the target package, the suffix of which, in turn, is determined by the name of the project. They should not change.
And why does Xcode not pick up the existing application identifier that I already created in the iOS Dev Center. It uses the application in lower case, but I understand that it does not matter, and in any case it is not possible to replace it with a version in upper case because for this you will need to first remove the application identifier, which seems impossible .
So, how can I fix the problem in Xcode (for example, using direct editing capabilities) and what is the recommended workflow between Xcode and iOS Dev Center to add features in the first place?
source share