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

com.avito.plugin.QAppsExtension.kt Maven / Gradle / Ivy

Go to download

Collection of infrastructure libraries and gradle plugins of Avito Android project

The newest version!
package com.avito.plugin

import org.gradle.api.model.ObjectFactory
import org.gradle.api.provider.ListProperty
import org.gradle.api.provider.Property
import org.gradle.kotlin.dsl.listProperty
import org.gradle.kotlin.dsl.property
import javax.inject.Inject

public open class QAppsExtension @Inject constructor(objects: ObjectFactory) {

    public val serviceUrl: Property = objects.property()

    /**
     * Specifies the comment message, visible in QApps interface
     * It could be additional meta information, like build number
     */
    public val comment: Property = objects.property()

    /**
     * Branch name without remote specified
     */
    public val branchName: Property = objects.property()

    /**
     * Set android build variant names you expect as release
     */
    public val releaseBuildVariants: ListProperty = objects.listProperty()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy