osamarao
05/07/2018, 6:15 PMkapt.kotlin.generated
is pointing to. In my case its in /generated/source/kaptKotlin/
When you want to access the generated functions, android cannot find them unless you add to your build.gradle
android {
…
sourceSets {
main {
java {
srcDir "${buildDir.absolutePath}/generated/source/kaptKotlin/"
}
}
}
}
is there a way to avoid this?osamarao
05/08/2018, 2:01 PMosamarao
05/14/2018, 7:00 PM