Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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:

  • Declare repository providing the artifact, see the documentation at https://docs.gradle.org/current/userguide/declaring_repositories.html

    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:

  • Declare repository providing the artifact, see the documentation at https://docs.gradle.org/current/userguide/declaring_repositories.html
like image 835
Simba-97 Avatar asked Jun 01 '21 19:06

Simba-97


People also ask

How do I find my kotlin version?

IntelliJ IDEA and Android Studio suggest updating to a new release once it is out. When you accept the suggestion, it automatically updates the Kotlin plugin to the new version. You can check the Kotlin version in Tools | Kotlin | Configure Kotlin Plugin Updates.

What is the latest version of Kotlin?

Kotlin 1.6 was released in November 2021. Kotlin 1.7 was released in June 2022, including the alpha version of the new Kotlin K2 compiler.


Video Answer


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"

    }
like image 147
conrad wawire Avatar answered Oct 20 '22 12:10

conrad wawire