Fastlane loadly.io plugin

fastlane Plugin Badge Ruby Gem

Getting Started

This project is a fastlane plugin. To get started with fastlane-plugin-loadly, add it to your project by running:

fastlane add_plugin loadly

About loadly.io

Loadly.io is the ultimate platform for app beta testing and distribution, offering unlimited app uploads and downloads, enhanced security, detailed analytics, and seamless integration. Alternative to TestFlight and Diawi

This plugin can upload .ipa and .apk file to Loadly.

Available options

Key Required Type Description
api_key true String Loadly API Key
file true String Path to .ipa or .apk file.
Default: IPA_OUTPUT_PATH or GRADLE_APK_OUTPUT_PATH based on platform
build_password false String Set the App installation password. If the password is empty, public installation is used by default
build_description false String Additional information to your users on this build: the comment will be displayed on the installation page
callback_url false String The URL loadly should call with the result
timeout false Int Timeout for uploading file to Loadly.
Default: 600
Range: (60, 1800)

If file upload successfully, you can access result link by:

lane_context[SharedValues::UPLOADED_FILE_LINK_TO_LOADLY]

Example

Minimal plugin configuration is:

loadly(
    api_key: "your_api_key",
    file: "your_app_file_path",
)

For more options see Available options section.

Issues and Feedback

For any other issues and feedback about this plugin, please submit it to this repository.

Troubleshooting

If you have trouble using plugins, check out the Plugins Troubleshooting guide.

Using fastlane Plugins

For more information about how the fastlane plugin system works, check out the Plugins documentation.

About fastlane

fastlane is the easiest way to automate beta deployments and releases for your iOS and Android apps. To learn more, check out fastlane.tools.