我想运行一个服务器来为我构建ipa。当使用Xcode构建app时,请使用以下命令:
/usr/bin/xcodebuild -project /Users/xxxx/sites/PhpServer/AutoUpload/ProjectsDir/48c36d185970fa9231f1f6274b72cf60/48c36d185970fa9231f1f6274b72cf60.xcodeproj -target 48c36d185970fa9231f1f6274b72cf60 -configuration Release PROVISIONING_PROFILE=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
结果是:
Code Sign error: No codesigning identities found: No codesigning identities (i.e. certificate and private key pairs) that match the provisioning profile specified in your build settings
我已在~/Library/MobileDevice/Provisioning profile
签到,配置文件就在那里。
我感到困惑的是它在服务器根目录所在的终端中运行良好。
我在想的是,php的xcodebuild
执行可能无法找到~/Library/MobileDevice/Provisioning profile
目录。
如何在使用xcodebuild
时指定配置文件的位置路径,PROVISIONING_PROFILE=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
仅指定ID,位置路径如何?
是否有其他方法可以通过Building ipa
?