XCode 9后fastlane手动配置证书

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

参考:
当Fastlane遇到Xcode9打包出来不一定是ipa而是坑

Setting up your Xcode Project,Xcode 9 and up

你可能感兴趣的:(XCode 9后fastlane手动配置证书)