Xcode 11 beta中的Provisioning Profile错误

时间:2019-08-06 14:39:10

标签: xcode fastlane

我一直在Xcode 10中构建我的应用程序,而Fastlane一直在管理所有供应配置文件和证书以及所有内容。

已经在手机上安装了iOS 13 beta,我安装了Xcode 11 beta,现在出现错误:“配置文件“与Development com.myapp.bundleId相匹配”不包括签名证书“​​ Apple Development:My名称(ADFGLAUDFHB)”。

我担心根本无法更改任何东西,以免搞乱我神奇的Fastlane设置或其他任何东西。希望有人知道该怎么办。谢谢!

1 个答案:

答案 0 :(得分:3)

Fastlane支持版本为2.132.0 https://github.com/fastlane/fastlane/releases/tag/2.132.0的Xcode 11供应配置文件。

要生成新的配置文件,您必须对现有配置文件进行核对,并使用如下标记generate_apple_certs来生成新的配置文件

fastlane match development --generate_apple_certs

或在具有以下内容的fastfile中使用的情况:

 match(app_identifier: [ENV["APP_ID_STAGING"]], type: "development", generate_apple_certs: true)