我正在使用xcodebuild在命令行上构建iOS项目。使用Release配置构建可以创建和App.xcarchive。然后我尝试使用
导出App Store IPA的存档xcodebuild -exportArchive -archivePath App.xcarchive -exportPath ~/output/ -exportOptionsPlist appstore.plist
我的appstore.plist,
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>teamID</key>
<string>T3AM1D</string>
<key>method</key>
<string>app-store</string>
</dict>
</plist
这给了我错误,
错误:exportArchive:操作无法完成。(IDEDistributionErrorDomain错误3。)
任何帮助将不胜感激。
答案 0 :(得分:6)
最后我能够解决这个问题。
Xcode
- &gt; targets
- &gt; Build settings
- &gt; Profiles and signing identity + team
Xcode
- &gt; Product
- &gt; Archive
- &gt; export to App Store IPA
至少跑了一次Xcode
已关闭希望这有帮助