简体   繁体   English

Xcode 11 beta 中的配置文件错误

[英]Provisioning Profile error in Xcode 11 beta

I had been building my app in Xcode 10, and Fastlane had been managing all the provisioning profiles and certificates and everything.我一直在 Xcode 10 中构建我的应用程序,Fastlane 一直在管理所有配置文件和证书以及所有内容。

Having put iOS 13 beta on my phone, I installed Xcode 11 beta, and now I'm getting the error: "Provisioning profile "match Development com.myapp.bundleId" doesn't include signing certificate "Apple Development: My Name (ADFGLAUDFHB)".在我的手机上安装了 iOS 13 测试版后,我安装了 Xcode 11 测试版,现在出现错误:“配置文件“匹配开发 com.myapp.bundleId”不包括签名证书“​​Apple Development:我的名字(ADFGLAUDFHB )”。

I'm afraid to change anything at all, lest it mess up my magical Fastlane setup or anything.我根本不敢改变任何东西,以免弄乱我神奇的 Fastlane 设置或任何东西。 Hoping someone knows what to do.希望有人知道该怎么做。 Thanks!谢谢!

Fastlane supports Xcode 11 provisioning-profiles with version 2.132.0 https://github.com/fastlane/fastlane/releases/tag/2.132.0 Fastlane 支持 Xcode 11 配置文件,版本为 2.132.0 https://github.com/fastlane/fastlane/releases/tag/2.132.0

To generate new provisioning profiles you have to nuke the existing one and generate new profiles with the flag generate_apple_certs like this要生成新的配置文件,您必须取消现有的配置文件并生成带有generate_apple_certs标志的新配置文件,如下所示

fastlane match development --generate_apple_certs

or in case of usage inside of a fastfile with somthing like this:或者如果在 fastfile 中使用类似这样的东西:

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM