@Yera111

> Could not resolve all artifacts for configuration ':classpath'?

День Добрый только что скачал АС
при создании проектов выдает ошибку
A problem occurred configuring root project 'My Application'.
> Could not resolve all artifacts for configuration ':classpath'.
> Could not find org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.0-release-764.
Searched in the following locations:
- https://dl.google.com/dl/android/maven2/org/jetbra...
- https://repo.maven.apache.org/maven2/org/jetbrains...
Required by:
project :

Possible solution:
- Declare repository providing the artifact, see the documentation at https://docs.gradle.org/current/userguide/declarin...
  • Вопрос задан
  • 2983 просмотра
Пригласить эксперта
Ответы на вопрос 1
xez
@xez
TL Junior Roo
Странно, конечно, но его там действительно нет...
Попробуйте добавить репозиторий https://repo1.maven.org/maven2/
Примерно так это будет выглядеть:
build.gradle.kts
repositories {
    mavenCentral()
    google()
    maven {
        url = uri("https://repo1.maven.org/maven2/")
    }
}

или
build.gradle
repositories {
    mavenCentral()
    google()
    maven {
        url "https://repo1.maven.org/maven2/"
    }
}
Ответ написан
Комментировать
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Похожие вопросы