我创建了一个通知扩展。我的主要应用程序 id 是com.company.app
我的通知扩展程序 id 是com.company.app.notificationService
我在 iOS 开发门户上创建了一个带有标识符的新应用程序 ID,com.company.app.notificationService
并启用了关联域和推送通知
我调用以下命令让 match 生成一个新的配置文件。它创建了一个新的配置文件,其中 app id 作为我在上一步中创建的新标识符
match(
git_url: "https://github.com/company/certs.git",
type: "enterprise",
app_identifier: ["com.company.app.notificationService"],
readonly: !is_ci
)
我添加了应用配置的逻辑
// filtered to ensure we only change the provisioning profile of the extension
update_project_provisioning(
xcodeproj: ENV["PROJECT"],
target_filter: ENV["com.company.app.notificationService"],
profile: ENV["sigh_com.company.app.notificationService_enterprise_profile-path"],
build_configuration: "Debug"
)
运行这个我得到以下错误。看起来它将配置文件与主应用程序而不是扩展程序进行比较,尽管我已将扩展程序目标添加为过滤器
error: Provisioning profile "match InHouse com.company.app.notificationService" has app ID "com.company.app.notificationService", which does not match the bundle ID "com.company.app". (in target 'Main App' from project 'Project')