代码签名错误:在 xcode 7.3 中找不到预配配置文件



我有一个iOS项目,我在其中编写了iOS UI测试用例。

现在我已经创建了另一个osx(swift)命令行工具,从主文件中,我想运行我的ios项目UI测试。

为此,我使用以下命令:

xcodebuild test -project /Users/usernamer/Desktop/Xocde/ios-ui-automation-demo-master/ios-ui-automation-demo.xcodeproj -scheme ios-ui-automation-demo -destination 'platform=iOS Simulator,name=iPad Air'

如果我从终端运行此命令,则iOS项目UI测试运行正常。

但是如果我从我的osx命令行工具swift文件(在新的OSX项目中)运行命令,则会显示错误。代码是

import Foundation
func shell(args: String...) -> Int32 {
let task = NSTask()
task.launchPath = "/usr/bin/xcodebuild"
task.arguments = args
task.currentDirectoryPath = "/Users/username/Desktop/Xocde/ios-ui-automation-demo-master/"
task.launch()
task.waitUntilExit()
return task.terminationStatus
}
print("This is test version edit")
shell("xcodebuild test -project /Users/username/Desktop/Xocde/ios-ui-automation-demo-master/ios-ui-automation-demo.xcodeproj -scheme ios-ui-automation-demo -destination 'platform=iOS Simulator,name=iPad Air'")

此代码显示以下错误:

Build settings from command line:
xcodebuild test -project ios-ui-automation-demo.xcodeproj -scheme ios-ui-automation-demo -destination 'platform = iOS Simulator,name=iPad Air'
=== BUILD TARGET ios-ui-automation-demo OF PROJECT ios-ui-automation-demo WITH THE DEFAULT CONFIGURATION (Release) ===
Check dependencies
Code Sign error: No provisioning profiles found: No non–expired provisioning profiles were found.
** BUILD FAILED **

The following build commands failed:
Check dependencies
(1 failure)
Program ended with exit code: 9

我已经浏览了这个 Xcode 7.2 没有找到匹配的配置文件

但是没办法,请帮助我什么是我的错误。

我正在使用 Swift 2.2 Xcode 7.3

看看你的苹果开发者页面 http://developer.apple.com .

  • 转到您的"证书、标识符和配置文件"页面
  • 左侧是导航
  • 向下滚动,直到到达"预配配置文件"
  • 单击"开发"或"分发",然后查看是否有与您的应用程序相关的任何配置文件

如果没有,请创建一个。

相关内容

  • 没有找到相关文章

最新更新