There is also some docs about kapt <https://kotlinlang.org/docs/reference/using-gradle.html#annotati...
v
l
nice! when I looked last time, there was basically no info πŸ™‚
had to figure everything out β€œthe hard way” πŸ˜–
v
we are trying to fill those gaps, feel free to ask if some docs are missing
πŸ‘ 1
d
feel free to ask if some docs are missing
@vyacheslav.gerasimov i can't find info about jre specific `stdlib`s for example what difference between
stdlib-jre7
and
stdlib-jre8
v
@deviant
kotlin-stdlib-jre7
and
kotlin-stdlib-jre8
are extensions on top of
kotlin-stdlib
and contain some useful functions specific for jre7 / jre8 apis, for example: https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/use.html https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.streams/index.html They bring kotlin-stdlib to your project as a transitive dependency.
πŸ‘ 1