Skip to main content

Setting Up Appcircle Testing Distribution Plugin

The Appcircle Testing Distribution plugin allows users to upload their apps and start distribution to test groups or individuals.

Discover Action

You can discover more about this action and install it by:

Preview of fastlane-plugin-appcircle_testing_distribution | RubyGems.org | your community gem host

How to Add the Appcircle Distribute Task Extension to Your Pipeline

To install the Appcircle Testing Distribution action, install the plugin and add the following step to your pipeline at the end:

fastlane add_plugin appcircle_testing_distribution
  appcircle_testing_distribution(
accessToken: "$(AC_ACCESS_TOKEN)", # Your Appcircle Access Token
profileID: "$(AC_PROFILE_ID)", # ID of your Appcircle Distribution Profile
appPath: "$(AC_APP_PATH)", # Path to your iOS .ipa or .xcarchive, or Android APK or App Bundle
message: "$(AC_MESSAGE)", # Your Message
)
Build Steps Order

You should add this task extension after completing your build steps.

References