Paul Woitaschek
09/17/2019, 1:17 PMdebug
, release
, ẁhatever
. I can now declare kapt on one onf these buildTypes kaptDebug(myDependency)
and now when I assemble that build type: module:assembleDebug
it runs kapt.
How does it work when I don't use the android plugin, but only the pure kotlin
plugin. How can I create these build configurations so I get a assembleDebug
? I tried adding `sourceSets`:
sourceSets {
debug
release
}
But that doesn't give me a assembleDebug
taskgildor
09/17/2019, 2:58 PMPaul Woitaschek
09/17/2019, 6:03 PMgildor
09/17/2019, 11:21 PM