Search code examples
iphoneiosin-app-purchaseprovisioningapp-id

iOS Provisioning Portal – App ID


I have an app in the App Store, recently updated. I added an In-App Purchase in it. App ID created in iOS Provisioning Portal says that In-App Purchases is not available: enter image description here

However, it works just fine... So my question is what is App ID and where I need it?


Solution

  • for these services you have to create a unique AppID. the AppID which contains the asterisk * is not unique AppID.

    example for the unique AppID:

    ABCDEFGHIJK.com.applicationid.veryunique


    the following IDs cannot use the relevant services because they are not unique IDs (so the services are unavailable for you for your similar IDs with asterisk):

    ABCDEFGHIJK.com.applicationid.* or

    ABCDEFGHIJK.com.* or

    ABCDEFGHIJK.*


    see the live picture here, and spot the asterisk * in the first AppID and you are seeing the most of the services are unavailable.

    the second one does not contains any asterisk and all of the services are available for it.

    enter image description here

    I hope this simple explanation is good enough to solve your problem.