build.gradle is just: def arrow_version = "0.10.5"...
# arrow
s
build.gradle is just: def arrow_version = "0.10.5" dependencies { implementation "io.arrow-ktarrow core$arrow_version" implementation "io.arrow-ktarrow syntax$arrow_version" kapt "io.arrow-ktarrow meta$arrow_version" }
j
No that is normal, you can get rid of the warning by putting
Copy code
kapt.incremental.apt=false
in your gradle.properties
s
the annotation processor for arrow-meta is not incremental, that is what the warning tells you.... however that will be replaced by a compiler plugin developed on #arrow-meta compiler plugins don't use kapt and are incremental out of the box
👌 1
s
Cool, thats good to hear!