fastlane_doc

作者: andyJi | 来源:发表于2017-07-11 16:57 被阅读6次

文档

docs.fastlane.tools

App Store Deployment

iOS App Store deployment using fastlane

[Building your app](iOS App Store deployment using fastlane)

fastlane takes care of building your app using a feature called gym, just add the following to your Fastfile:

lane :appstore do
  gym(scheme: "MyApp")
end

Additionally you can specify more options for building your app, for example

lane :appstore do
  gym(scheme: "MyApp",
      workspace: "Example.xcworkspace",
      include_bitcode: true)
end

Try running the lane using

$ fastlane appstore

If everything works, you should have a [ProductName].ipa file in the current directory. To get a list of all available parameters for gym, run fastlane action gym.

相关文章

  • fastlane_doc

    文档 docs.fastlane.tools App Store Deployment iOS App Store...

网友评论

    本文标题:fastlane_doc

    本文链接:https://www.haomeiwen.com/subject/zpymhxtx.html