Is there any way to configure `buildTypes` using s...
# gradle
n
Is there any way to configure
buildTypes
using something like below? I don’t want to do it inside
defaultConfig
block
Copy code
configure<NamedDomainObjectContainer<BuildType>> { }
v
Your mean like
buildTypes.configureEach { ... }
?
n
yeah that also works thank you!