It’s not a problem of Kapt itself. Kapt already ha...
# kapt
g
It’s not a problem of Kapt itself. Kapt already have incremental stubs generation, but cannot be incremental for the main part: Annotation Processing, JSR-269 is not incremental by design and Java’s APT also not incremental. There is project from Gradle to provide special build system tooling to allow write incremental annotation processors But this requires support from Annotation Processor itself, you can check list of popular AP that support this: https://github.com/gradle/gradle/issues/5277 As you can see just a few support incremental compilation (and not very popular) But as I understand Kapt also should support this but people from Gradle said that they are in touch with Kotlin team about this.