Could not find org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.10-release-894. Help me out someone?

Viewed 5435

A problem occurred configuring root project 'Dice Roller'.

Could not resolve all artifacts for configuration ':classpath'.A problem occurred configuring root project 'Dice Roller'. Could not resolve all artifacts for configuration ':classpath'. Could not find org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.10-release-894. Searched in the following locations: - https://dl.google.com/dl/android/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin/1.5.10-release-894/kotlin-gradle-plugin-1.5.10-release-894.pom - https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin/1.5.10-release-894/kotlin-gradle-plugin-1.5.10-release-894.pom Required by: project :

Possible solution:

Possible solution:

1 Answers

on top level

build.gradle

replace it with a static version number

dependencies 
{
 
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.10"

    }
Related