tseisel
09/01/2019, 6:04 PMsrc/main/java to src/main/kotlin has any positive impact on build speed ?
I'd expect to avoid at least a java compiler pass.Dominaezzz
09/01/2019, 6:14 PMsrc/main/kotlin, so it won't make a difference.wasyl
09/01/2019, 7:01 PM.kt classes in the entire Gradle module.wasyl
09/01/2019, 7:02 PMsrc/main/java see classes from src/main/kotlin and vice versa, so Kotlin folks can’t really make any optimizations based on where the files arewasyl
09/01/2019, 7:04 PMkt files are present, so it doesn’t need to engage javac. But it’s also quite difficult, for example if you use annotation processor that generates java code, you’ll end up with mixed .kt and .java files anywaywasyl
09/01/2019, 7:04 PMtseisel
09/01/2019, 7:10 PM