dephinera
12/21/2022, 1:44 PMext.flavorConfig = {
flavorDimensions(*dimensions)
productFlavors {
with flavors
}
sourceSets {
with sources
}
}
so far in groovy I used it like: with flavorConfig
. How would that look like in Kotlin?Sam
12/21/2022, 1:55 PMval flavorConfig: Closure<*> by ext
apply(flavorConfig)