An App ID with Identifier 'com.example.app.extention' is not available. Please enter a different string

前端 未结 15 628
一整个雨季
一整个雨季 2020-12-05 10:00

I have tried to add extensions to my iOS app, both a today extension and an Apple Watch app. My app has been completed however when submitting my archive I got the error bas

相关标签:
15条回答
  • 2020-12-05 10:23

    Xcode to 7.3

    I encountered the same problem after upgrading from 7.2 to 7.3. In my case the fault was a hyphenated domain and AppID which worked in the past but stopped working in XCode 7.3. I replaced the hyphen with a space in AppID (in Membercenter) and it worked again.

    0 讨论(0)
  • 2020-12-05 10:27

    I had to delete the app id from the developer console and let XCode re-create the app id for me.

    0 讨论(0)
  • 2020-12-05 10:29

    Version 7.3 (7D175)

    The Application ID Name should be same as application bundle identifier, if you application bundle identifier is com.abc.xyz than the application ID name for this bundle ID should be XC com abc xyz

    A name in any other format won't be seen by Xcode.

    If your application is already on app store and you are submitting update than just change the app ID name accourding to above formate and it will work

    0 讨论(0)
  • 2020-12-05 10:31

    Update xCode - these issues normally trigger a thought in my head to update. Normally fixes provisioning issue. Worked for me.

    0 讨论(0)
  • 2020-12-05 10:33

    I found the solution from Apple developer forums.

    Apple has just updated their Dev Center CGU. It seems that the app extension bundleId is stricter.

    if your app bundleId format is : com.my.app

    your app extension bundleId now have to be : com.my.app.XXX

    Creating new appID and provisioning profile fix the issue.

    Check this link https://forums.developer.apple.com/thread/15712

    0 讨论(0)
  • 2020-12-05 10:33

    I tried it with production provisioning profile, works for me.

    0 讨论(0)
提交回复
热议问题