gpt4 book ai didi

xcode - 代码签名错误 : No provisioning profiles found in xcode 7. 3

转载 作者:行者123 更新时间:2023-11-30 10:02:12 26 4
gpt4 key购买 nike

我有一个 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 no matching provisioning profiles found

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

我正在使用 swift 2.2 xcode 7.3

最佳答案

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

  • 转到您的“证书、标识符和配置文件”页面
  • 左侧是导航
  • 向下滚动直至到达“配置配置文件”
  • 点击“开发”或“分发”,查看是否有与您的应用相关的配置文件

如果没有,请创建一个。

关于xcode - 代码签名错误 : No provisioning profiles found in xcode 7. 3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37794576/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com