使用xcodebuild自动打包导出archive时报Provide a bundle identifier to select from available reformatters的解决方案

最近公司最了APPClip的适配.同时因为XCode12发布了GM版本.故自动打包工具进行了升级.但是在最后执行xcodebuild -exportArchive命令时出现了Error Domain=IDEDistributionReformatterSelectionStepErrorDomain Code=0 "Provide a bundle identifier to select from available reformatters: com.** and com...clip" UserInfo={NSLocalizedDescription=Provide a bundle identifier to select from available reformatters: com.. and com...clip}的问题.百度之后各种解决方案尝试无果(增加编译参数.请空编译目录等).
最后回过神想到在执行xcodebuild -exportArchive命令时指定了一个.plis的编译脚本.是不是需要在这里指定具体编译的bundleid?通过在.plist文件中增加key:distributionBundleIdentifier,value为bundleid的选项之后.问题解决

你可能感兴趣的:(使用xcodebuild自动打包导出archive时报Provide a bundle identifier to select from available reformatters的解决方案)