All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.triplet.gradle.play.PlayPublisherPluginExtension.groovy Maven / Gradle / Ivy

Go to download

Gradle Play Publisher is a plugin that allows you to upload your App Bundle or APK and other app details to the Google Play Store.

There is a newer version: 3.11.0
Show newest version
package de.triplet.gradle.play

class PlayPublisherPluginExtension {

    String serviceAccountEmail

    File pk12File

    boolean uploadImages = false

    boolean errorOnSizeLimit = true

    private String track = 'alpha'

    void setTrack(String track) {
        if (!(track in ['alpha', 'beta', 'production'])) {
            throw new IllegalArgumentException("Track has to be one of 'alpha', 'beta', or 'production'.")
        }

        this.track = track
    }

    def getTrack() {
        return track
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy