FastlaneSupplyConfiguration Class

Summary

Fastlane supply configuration options.
Assembly
Cake.Fastlane.dll
Namespace
Cake.Fastlane
Base Types
graph BT Type-->Base0["FastlaneConfiguration"] click Base0 "/api/Cake.Fastlane/FastlaneConfiguration" Base0-->Base1["ToolSettings"] Type["FastlaneSupplyConfiguration"] class Type type-node

Syntax

public class FastlaneSupplyConfiguration : FastlaneConfiguration

Constructors

Name Summary
FastlaneSupplyConfiguration() Initializes a new instance of the FastlaneSupplyConfiguration class.

Properties

Name Value Summary
AAB FilePath
Gets or sets the file path to the AAB file to upload.
ApkFilePath FilePath
Gets or sets the file path to the APK to upload.
ApkFiles IEnumerable<FilePath>
Gets or sets an array of APK file paths to upload.
AppIdentifier string
Gets or sets the bundle identifier(s) of your app (comma-separated).
Inherited from FastlaneConfiguration
CheckSupersededTracks bool
Gets or sets a value indicating whether to check the other tracks for superseded versions and disable them.
Force bool
Gets or sets a value indicating whether to renew the provisioning profiles every time you run match.
Inherited from FastlaneConfiguration
GitFullName string
Gets or sets the full name of the git user.
Inherited from FastlaneConfiguration
GitUserEmail string
Gets or sets the git users email.
Inherited from FastlaneConfiguration
Issuer string
Gets or sets the issuer of the p12 file (email addressof the services account).
JsonKeyData string
Gets or sets the raw service account JSON data used to authenticate with Google.
JsonKeyFilePath FilePath
Gets or sets the path to a file containing service account JSON, used to authenticate with Google.
KeyFilePath FilePath
Gets or sets the p12 file used to authenticate with Google.
Mapping FilePath
Gets or sets the file path to the mapping file to upload
MappingFiles IEnumerable<FilePath>
Gets or sets the array of paths to mapping files to upload.
MetadataPath DirectoryPath
Gets or sets the path to the directory containing the metadata files.
PackageName string
Gets or sets the package name of the application to use.
Platform string
Gets or sets the provisioning profile's platform to work with (i.e. ios, tvos)
Inherited from FastlaneConfiguration
PromoteTrack string
Gets or sets the track to promote to.
Rollout Nullable<double>
Gets or sets the percentage of the user fraction when uploading to the rollout track.
RootUrl string
Gets or sets the root URL for the Google Play API. The provided URL will be used for API calls in place of https://www.googleapis.com/"
SkipUploadAAB bool
Gets or sets a value indicating whether to skip uploading AAB.
SkipUploadApk bool
Gets or sets a value indicating whether to skip uploading APK.
SkipUploadImages bool
Gets or sets a value indicating whether to skip uploading images.
SkipUploadMetadata bool
Gets or sets a value indicating whether to skip uploading metadata.
SkipUploadScreenShots bool
Gets or sets a value indicating whether to skip uploading screen shots.
TeamId string
Gets or sets the team identifier.
Inherited from FastlaneConfiguration
TeamName string
Gets or sets the name of the team.
Inherited from FastlaneConfiguration
Track string
Gets or sets the track of the application to use. The default available tracks are: #{default_tracks.join(', ')}.
UseBundleExecution bool
Gets or sets a value indicating whether [use bundle execution].
Inherited from FastlaneConfiguration
UserName string
Gets or sets your Apple ID Username.
Inherited from FastlaneConfiguration
ValidateOnly bool
Gets or sets a value indicating whether to only validate changes with Google Play rather than actually publish.

Extension Methods

Name Value Summary
Dump<FastlaneSupplyConfiguration>() string
Get a basic string representation of specified object.
Requires the Cake.Incubator addin
IsIn<FastlaneSupplyConfiguration>(FastlaneSupplyConfiguration[]) bool
Checks if the source is contained in a list
Requires the Cake.Incubator addin
NotNull<FastlaneSupplyConfiguration>(string) void
Throws an exception if the specified parameter's value is null.
Requires the Cake.Ftp addin
NotNull<FastlaneSupplyConfiguration>(string) void
Throws an exception if the specified parameter's value is null.
Requires the Cake.Issues addin
ThrowIfNull<FastlaneSupplyConfiguration>(string, string) T
Throws a System.ArgumentNullException with a specific message if the value is null, otherwise returns the value
Requires the Cake.Incubator addin
ThrowIfNull<FastlaneSupplyConfiguration>(string) T
Throws a System.ArgumentNullException if the value is null, otherwise returns the value
Requires the Cake.Incubator addin
ToDictionary() IDictionary<string, object>
Requires the Cake.DeployParams addin

See Also