Hi! I am porting a Groovy based `buildSrc` to Kotl...
# gradle
d
Hi! I am porting a Groovy based
buildSrc
to Kotlin. What is the equivalent to `project.android.buildTypes.all{buildType ->`(
android
is not a property of
project
)
t
project.extensions.get<...>("android").buildTypes ...
e
the extension can be AppExtension, LibExtension (old pair) or ApplicationExtension, LibraryExtension(new pair)
d
Thank you!