Skip to content

Core Library

Warning

If you're using Fastlane, this probably is irrelevant to you since you'll be interacting with the core library through the Fastlane plugin.

The easiest way of interacting with core utils is to create an instance of the DependencyInjector class.

build_tools = Apadmi::Grout::DependencyInjector.init_for_jira(
  jira_username,
  jira_api_token,
  jira_base_url,
  jira_context_path,
  jira_project_key,
  Apadmi::Grout::DefaultLogger.new
)
build_tools = Apadmi::Grout::DependencyInjector.init_for_ado(
  ado_pat,
  base_url
)

Example

Looking up a list of tickets by their keys.

my_issues = build_tools.board_service.find_issues_by_keys(["PPT-21])

Yard Reference

Back to top