Hi, Is there any good tutorial out there that teac...
# announcements
b
Hi, Is there any good tutorial out there that teach the entire process of how to configure the support of kotlin-dsl in gradle.
k
I don't think you really need to configure anything, just have a
.gradle.kts
present.
b
oh. great. So all i need is .gradle.kts, and the gradle iteself?
k
Yes.
b
what about those kotlin standard library, which kotlin developer will need. Although I am not developing any kotlin program, but i not sure if gradle using kotlin dsl need such library or not.
k
Gradle will download it once it finds the
.kts
file.
b
ok. noted. Thanks!!!!!