FastlaneProvider.

Supply(FastlaneSupplyConfiguration) Method

Summary

Executes fastlane supply with the specified configuration.
Assembly
Cake.Fastlane.dll
Namespace
Cake.Fastlane
Containing Type
FastlaneProvider

Syntax

public void Supply(FastlaneSupplyConfiguration supplyConfiguration = null)

Examples

           var configuration = new FastlaneSupplyConfiguration
           {
                 ApkFilePath = "./artifacts/android/cake.fastlane.apk",
                 SkipUploadMetadata = true,
                 SkipUploadImages = true,
                 SkipUploadScreenShots = true
           };

           Fastlane.Supply(configuration);

Parameters

Name Type Description
supplyConfiguration FastlaneSupplyConfiguration The fastlane supply configuration.

Return Value

Type Description
void