I just tried to update Korge to latest version by ...
# korge
r
I just tried to update Korge to latest version by changing the build.gradle.kts dependency to 1.15
Copy code
dependencies {
		classpath("com.soywiz.korlibs.korge.plugins:korge-gradle-plugin:1.15.0.0")
	}
}
On compiling, I am getting this error
Copy code
A problem occurred configuring root project 'korpg'.
> Could not resolve all artifacts for configuration ':classpath'.
   > Could not find com.android.tools.build:gradle:3.6.0.
     Searched in the following locations:
       - file:/C:/Users/risharan/.m2/repository/com/android/tools/build/gradle/3.6.0/gradle-3.6.0.pom
       - <https://dl.bintray.com/korlibs/korlibs/com/android/tools/build/gradle/3.6.0/gradle-3.6.0.pom>
       - <https://plugins.gradle.org/m2/com/android/tools/build/gradle/3.6.0/gradle-3.6.0.pom>
       - <https://repo.maven.apache.org/maven2/com/android/tools/build/gradle/3.6.0/gradle-3.6.0.pom>
     Required by:
         project : > com.soywiz.korlibs.korge.plugins:korge-gradle-plugin:1.15.0.0

Possible solution:
 - Declare repository providing the artifact, see the documentation at <https://docs.gradle.org/current/userguide/declaring_repositories.html>
d
you have to include the google repository
r
Thanks. That fixed it
👍 1