iOSCI

fastlane_doc

2017-07-11  本文已影响6人  andyJi

文档

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.

上一篇 下一篇

猜你喜欢

热点阅读