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

com.toasttab.expediter.gradle.config.AndroidApplicationSpec.kt Maven / Gradle / Ivy

There is a newer version: 0.0.22
Show newest version
package com.toasttab.expediter.gradle.config

open class AndroidApplicationSpec {
    val variants = mutableListOf()
    var withRuntimeConfiguration = true

    fun variant(variant: String) {
        variants.add(variant)
    }

    fun withoutRuntimeConfiguration() {
        withRuntimeConfiguration = false
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy