iOS

This is essentially a wrapper around gym which handles:

  • Naming the artifact as per Apadmi naming conventions
  • Providing a sensible output directory of the artifact (defaulting to Bitrise artifact directory)

Example

fastlane_require 'fastlane-plugin-apadmi_grout'
...
ipa_path = build_ipa(
  version: version,        # App Version e.g. 1.0.0
  suffix: "UAT-App-Store", # Artifact filename suffix

  # These are gym properties, see docs linked below
  scheme: "app",
  export_method: "app-store",
  configuration: "Release-UAT"
)

Note

All gym parameters are supported: https://docs.fastlane.tools/actions/gym/#parameters

Back to top