com.toasttab.expediter.gradle.config.AndroidApplicationSpec.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plugin Show documentation
Show all versions of plugin Show documentation
Check ABI compatibility at build time
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
}
}