tim
05/13/2020, 8:55 AMimplementation(platform("org.jetbrains.kotlin:kotlin-bom"))
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
and
implementation(kotlin("stdlib"))
Both seem to work fine for my project so i'd like to understand what each is doing?Syex
05/13/2020, 9:02 AMString
. You can step into it and you will see, that it concatenates “org.jetbrains.kotlin:kotlin-” with what you passed, stdlib
. so in the end it’s exactly the samechristophsturm
05/13/2020, 1:14 PMtim
05/13/2020, 1:15 PMoctylFractal
05/13/2020, 5:13 PM