Xcode 9 distribution build fails because format of exportOptions.plist has changed in new release

后端 未结 2 1211
南旧
南旧 2020-12-24 02:16

I am trying to compile an ad-hoc IPA for my app using SDK version 6.1.2 and Xcode 9 beta (trying to see if the app works in the new version). My build is failing with the fo

2条回答
  •  清歌不尽
    2020-12-24 02:34

    use command /Applications/Xcode-beta.app/xcodebuild -help. You'll have an detail information about exportOptionsPlist Available keys for -exportOptionsPlist:

    ....

    provisioningProfiles : Dictionary

    For manual signing only. Specify the provisioning profile to use for each executable in your app. Keys in this dictionary are the bundle identifiers of executables; values are the provisioning profile name or UUID to use.

    ....

    Here is a sample about option plist

    
    
    
    
        provisioningProfiles
        
            com.aaa.bbb
            adhoc_bbb
            com.aaa.ccc
            adhoc_ccc
        
        method
        ad-hoc
        uploadBitcode
        
        uploadSymbols
        
    
    
    

提交回复
热议问题