Application failed codesign verification

后端 未结 9 1396
北海茫月
北海茫月 2021-01-05 07:57

I\'m getting the following error when trying to submit my app to the app store. I went through the initial provisioning process and am able to run the app on my phone so not

9条回答
  •  有刺的猬
    2021-01-05 08:14

    I had the same issue and this is what I did to get it to work:

    It turned out my Entitlements file was misformed.

    Through much trial and error I have figured out the issue. For others' sanity, here is the proper configuration:

    application-identifier          $(AppIdentifierPrefix)$(CFBundleIdentifier)
    
    com.apple.developer.ubiquity-container-identifiers
          Item 0                     $(TeamIdentifierPrefix)$(CFBundleIdentifier)
    

    This got it to validate successfully. I couldn't find this documented anywhere so hopefully it helps someone else.

提交回复
热议问题