How to create Entitlement.plist file in Xcode?

前端 未结 4 683
小鲜肉
小鲜肉 2020-12-05 10:31

I have downloaded the latest version of Xcode. I want to create Entitlement.plist file in my project.

Please give me proper steps to create an Entitlement.plis

4条回答
  •  独厮守ぢ
    2020-12-05 11:33

    You can manually create an Entitlements.plist file using the template below.

    Save it as YourTargetName.entitlements

    In your Target > Build Settings, set the key "Code Signing Entitlements" (CODE_SIGN_ENTITLEMENTS) to the file's path.

    
    
    
    
        application-identifier
        $(AppIdentifierPrefix)$(CFBundleIdentifier)
        beta-reports-active
        
    
    
    

提交回复
热议问题