Animesh Sahu
04/23/2020, 2:11 PMid 'org.jetbrains.kotlin.jvm' version 1.+
and it fetches 1.4-M1, and that version of kotlin-stdlib-jdk8 dependency is not available, it errors:
Could not find org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4-M1.
Possible solution:
- Declare repository providing the artifact, see the documentation at <https://docs.gradle.org/current/userguide/declaring_repositories.html>
araqnid
04/23/2020, 3:44 PMAnimesh Sahu
04/23/2020, 4:14 PMimplementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8") {
version {
strictly "1.3.72"
}
because "1.4-M1 is not released"
}
ilya.gorbunov
04/23/2020, 6:48 PM