iPhone Entitlements problem with XCode 4 for Ad Hoc distribution

前端 未结 7 2099
半阙折子戏
半阙折子戏 2021-02-01 06:26

I have reread all the documentation and postings on Ad Hoc distribution and still have a problem. If I try \'wireless\' distribution (with a .plist and .ipa file being downloade

7条回答
  •  Happy的楠姐
    2021-02-01 07:10

    The entitlements file should be:

    
    
    
        
             get-task-allow
               
             application-identifier
               $(AppIdentifierPrefix)$(CFBundleIdentifier)
             keychain-access-groups
               
                 $(AppIdentifierPrefix)$(CFBundleIdentifier)
               
    
    
    

    this works for wireless too.
    Why on earth the default one doesn't have all this in is something only Apple can answer. I can't see how to edit the raw text of a plist in Xcode so edited in TextEdit.

提交回复
热议问题