There is also some docs about kapt <https://kotlin...
# android
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