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

时间:2016-06-13 16:15:10

标签: xcode swift macos osx-elcapitan xcode7.3

我有一个ios项目,我已经编写了我的ios ui测试用例。

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

为此,我使用以下命令:

Stream

如果我从终端运行此命令,则ios项目ui test正常运行。

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

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'

此代码显示以下错误:

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'")

我已经完成了这个Xcode 7.2 no matching provisioning profiles found

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

我正在使用swift 2.2 xcode 7.3

1 个答案:

答案 0 :(得分:1)

http://developer.apple.com处查看您的苹果开发者页面。

  • 转到您的"证书,标识符&简档"页
  • 左侧是导航
  • 向下滚动,直到您找到"配置个人资料"
  • 点击"开发"或"发行"并查看是否有与您的应用相关的任何配置文件

如果没有,请创建一个。