question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Dependency Issue : org.jetbrains.kotlin:kotlin-stdlib:{strictly 1.3.31}

See original GitHub issue

After adding 'com.github.Chrisvin:EasyReveal:1.0' dependency i’m getting this error.

ERROR: Unable to resolve dependency for ':app@debug/compileClasspath': Could not resolve org.jetbrains.kotlin:kotlin-stdlib:{strictly 1.3.31}.

ERROR: Unable to resolve dependency for ':app@debugAndroidTest/compileClasspath': Could not resolve org.jetbrains.kotlin:kotlin-stdlib:1.3.50.

Issue Analytics

  • State:closed
  • Created 4 years ago
  • Comments:5 (4 by maintainers)

github_iconTop GitHub Comments

1reaction
sivabe35commented, Nov 19, 2019

Thanks… After adding EAP dependencies Now its working fine.

1reaction
Chrisvincommented, Nov 19, 2019

You can temporarily resolve this error by adding the following in your project build.gradle

ext.kotlin_version = '1.3.60-eap-25'

repositories {
        ...
        maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
    }

Take a look at the demo project build.gradle for reference.

I didn’t notice that I was using a early-access-preview version of kotlin, I’ll mark this as a bug since a stable library shouldn’t be using EAP dependencies. Kindly refrain from using this in production code until this issue is resolved (probably within 24 hours), thanks for the patience. 😃

Read more comments on GitHub >

github_iconTop Results From Across the Web

org.jetbrains.kotlin : kotlin-stdlib : 1.3.31 - Maven Central
org.jetbrains.kotlin:kotlin-stdlib. Kotlin Standard Library for JVM. Licenses. The Apache License, Version 2.0. Home page, https:// ...
Read more >
Could not find org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.31 ...
You are missing some repositories(jcenter) and some dependencies(kotlin-gradle-plugin). That's why Kotlin cannot be found.
Read more >
"Kotlin library and Gradle plugin versions are different ...
This seems to still be an issue in AS 3.6.1 and Kotlin 1.3.70. Any reference to "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" in a library comes ...
Read more >
org.jetbrains.kotlin » kotlin-stdlib » 1.3.31 - Maven Repository
Compile Dependencies (2) ; Defect Detection Apache 2.0, logo, org.jetbrains » annotations · 13.0 · 23.0.0 ; Lang Runtime Apache 2.0, logo, org.jetbrains.kotlin...
Read more >
Gradle - Plugin: org.jetbrains.kotlin.android
buildscript { repositories { maven { url "https://plugins.gradle.org/m2/" } } dependencies { classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.30" } ...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found