ursus
01/10/2020, 3:25 AMAmirul Zin
01/10/2020, 3:37 AMstdlib
dependency version and just let the Kotlin plugin does it for you.
As for jdk7
and jdk8
libraries, they expose extension methods for Java classes that is introduced in jdk7
(try with resources which supported by Kotlin use
extensions on AutoCloseable
(Java 7+ only) or jdk8
(Streams, Java 8+ only).
In pure Kotlin project, you need neither. You at least want jdk7
lib though if you do any IO with Java interop.ursus
01/10/2020, 11:24 AMilya.gorbunov
01/10/2020, 11:58 AM