XCode 9后fastlane手动配置证书
2017-11-22 本文已影响179人
fallrainy
lane :beta do
gym(
export_method: "app-store",
export_xcargs: "-allowProvisioningUpdates", #keychain授权
export_options: {
provisioningProfiles: {
"com.example.bundleid" => "Provisioning Profile Name",
"com.example.bundleid2" => "Provisioning Profile Name 2"
}
}
)
end