https://kotlinlang.org logo
#getting-started
Title
# getting-started
m

MisileLab

08/26/2021, 3:55 PM
What is this error mean?
Copy code
Unresolved reference: implementation
My build.gradle.kts file https://pastebin.com/EAcCPBff
r

Robert Jaros

08/26/2021, 3:58 PM
Perhaps you are using old Gradle.
m

MisileLab

08/26/2021, 4:00 PM
@Robert Jaros I'm using intellij idea, how can i update gradle?
r

Robert Jaros

08/26/2021, 4:02 PM
Usually gradle is included in the project as a wrapper. Check
gradle/wrapper
directory in your project and
gradle-wrapper.properties
file.
m

MisileLab

08/26/2021, 4:33 PM
I tried, but i got error.
Copy code
Script compilation error:

  Line 19:              implementation("com.soywiz.korlibs.korau:korau:2.2.0")
             ^ Unresolved reference: implementation
n

nschulzke

08/26/2021, 4:42 PM
I don't believe that
buildscript
dependencies have
implementation
as a configuration. Try
classpath
instead of
implementation
.
m

MisileLab

08/26/2021, 10:56 PM
Now this error
Copy code
Unresolved reference: classpath
770 Views