Trying to update my Kotlin Version to `1.3-M2` so ...
# getting-started
m
Trying to update my Kotlin Version to
1.3-M2
so I can mess around with Coroutines
0.26.0
, but I'm getting this error:
Copy code
Could not find org.jetbrains.kotlin:kotlin-gradle-plugin:1.3-M2.
Searched in the following locations:
    <https://dl.google.com/dl/android/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin/1.3-M2/kotlin-gradle-plugin-1.3-M2.pom>
    <https://dl.google.com/dl/android/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin/1.3-M2/kotlin-gradle-plugin-1.3-M2.jar>
    <https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-gradle-plugin/1.3-M2/kotlin-gradle-plugin-1.3-M2.pom>
    <https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-gradle-plugin/1.3-M2/kotlin-gradle-plugin-1.3-M2.jar>
Required by:
    project :
l
have you added the dependency to the
kotlin-dev
repository?
m
Should've mentioned that this was Android, sorry. I added the classpath to the dependencies in my project gradle
as normal
l
maven { url "<https://dl.bintray.com/kotlin/kotlin-dev>" }
m
oh I see
Let me try that
l
you might need
maven { url "<https://plugins.gradle.org/m2/>" }
too
n
any reason why you are not going to use 1.3-RC ?
m
To be honest, I didn't even see 1.3-RC came out. I just got back from vacation(left all tech at home). I will check that out. Thank you very much.
i
@leosan
kotlin-eap
repository should be used for EAP and RC releases, kotlin-dev is for internal builds only. https://dl.bintray.com/kotlin/kotlin-eap/
👍 2