xcodebuild -exportArchive: exportOptionsPlist error for key 'method': expected one of {}

前端 未结 8 1340
被撕碎了的回忆
被撕碎了的回忆 2020-12-28 12:23

I\'m using command line xcodebuild tool to export ad-hoc distribution ipa file out of my archive like this:

xcodebuild -exportArchive -archivePath /path/Arch         


        
相关标签:
8条回答
  • 2020-12-28 13:22

    I had the same issue and discovered when looking in KeyChain that the certificate used for signing had been revoked. Archiving worked fine but when we came to -exportArchive we got this cryptic error. HTH.

    0 讨论(0)
  • 2020-12-28 13:27

    In my case one of my static libs did not have Skip Install enabled and this resulted in the same problem. When I set in xcode Skip Install to Yes for that project I fixed that problem.

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