Kavan
03/14/2020, 9:10 PMcould not determined the dependencies of task ':compileKotlinMetadata'.
> Could not resolve all files for configuration ':kotlinCompilerClasspath'.
> Cannot resolve external dependency org.jetbrains.kotlin:kotlin-compiler-embeddable:1.4.0-dev-4220 because no repositories are defined.
Required by:
project :
How to solve this ??Fleshgrinder
03/16/2020, 6:24 AMAlexey Belkov [JB]
03/16/2020, 1:28 PMpluginManagement {
repositories {
maven { url '<http://dl.bintray.com/kotlin/kotlin-eap>' }
maven { url '<http://dl.bintray.com/kotlin/kotlin-dev>' }
mavenCentral()
maven { url '<https://plugins.gradle.org/m2/>' }
}
}
Add to `build.gradle`:
repositories {
maven { url '<http://dl.bintray.com/kotlin/kotlin-eap>' }
maven { url '<http://dl.bintray.com/kotlin/kotlin-dev>' }
}
Kavan
03/16/2020, 2:41 PM