Anyone get this error? Thanks <https://stackoverfl...
# android
g
Not sure that it related to Android
Anyway, looks that you override list of repositories
nothing wrong that this dependency is requested, it used by Greadle Kotlin DSL
looks that you overwriting list of repositories used by Gradle plugins (not by your dependencies)
make sure that in settings.gradle you do not override pluginManagement { repositories {} }
if you do, make sure that you have
gradlePluginPortal()
there
x
Kotlin multiplatform project
buildSrc/build.gradle
Copy code
plugins {
    `kotlin-dsl`
}

repositories {
    jcenter()
    gradlePluginPortal()
}
has not override pluginManagement { repositories {} }