【发布时间】:2016-09-23 17:21:44
【问题描述】:
我正在使用 fastlane 来处理配置。
这就是我所做的:
match nuke development
match nuke distribution
然后在一个通道中,我需要为每个 bundleId 提供这个:
match(type: "development", app_identifier: "com.myCompany.myApp", force_for_new_devices: true)
当我想下载配置时,我有一个执行此操作的通道:
match(type: "development", app_identifier: "com.myCompany.myApp", readonly: true)
所有这些让我可以在 nuke 时已经在门户中的设备上正常工作和构建。
如果我想添加设备,如何正确更新配置?
我试过了:
match development --force_for_new_devices true -a com.myCompany.myApp
它不起作用。
我收到此错误:
Provisioning profile '82afbd5b-9f19-4c78-b3ac-56a3565ce3f2' is not available on the Developer Portal
每次我必须添加设备时,唯一有效的方法就是对所有内容进行核对并重新开始。
不用核弹就可以添加设备的正确方法是什么??
我使用的是 Xcode 8,我禁用了 fastlane 建议的自动配置。
【问题讨论】: