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.

Could not resolve: org.jetbrains.kotlinx:kotlinx-collections-immutable-jvm:0.3

See original GitHub issue

Following the README.md instructions and added below line to my gradle dependencies configuration:

implementation("org.jetbrains.kotlinx:kotlinx-collections-immutable-jvm:0.3")

I got the following error message from gradle:

> ./gradlew build
> Task :compileKotlin FAILED

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':compileKotlin'.
> Could not resolve all files for configuration ':compileClasspath'.
   > Could not find org.jetbrains.kotlinx:kotlinx-collections-immutable-jvm:0.3.

And with the following link from jcenter, I got a 404 response: https://jcenter.bintray.com/org/jetbrains/kotlinx/kotlinx-collections-immutable-jvm/

However, if I follow the links and locate the jar on the jcenter web UI, I can download the jar successfully from this page: https://bintray.com/kotlin/kotlinx/kotlinx.collections.immutable/0.3#files/org%2Fjetbrains%2Fkotlinx%2Fkotlinx-collections-immutable-jvm%2F0.3

May I know whether version 0.3 is ready to be used?

Issue Analytics

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

github_iconTop GitHub Comments

7reactions
yuriykulikovcommented, Oct 20, 2019

Add this to your build.gradle, it will allow you to download artifacts from the bintray repository

repositories {
        maven {
            url "https://kotlin.bintray.com/kotlinx"
        }
    }
3reactions
JohannBlakecommented, Mar 18, 2021

jCenter is being permanently shut down. Where are these artifacts located now?

Read more comments on GitHub >

github_iconTop Results From Across the Web

Gradle build fails saying : Could not find org.jetbrains.kotlinx ...
Based on this thread, I get rid of jcenter from my Jetpack Compose project by: Modify the dependencies.kt in BuildSrc to add. object...
Read more >
Move org.jetbrains.kotlinx:kotlinx-collections-immutable-jvm to ...
I'll get: Execution failed for task ':app:checkDebugAarMetadata'. Could not resolve all files for configuration ':app:debugRuntimeClasspath'. Could not find org ...
Read more >
Carlos Mota on Twitter: "If you're removing jcenter() and using ...
... not resolve org.jetbrains.kotlinx:kotlinx-collections-immutable-jvm:0.3.3. ... () and using #JetpackCompose you'll get this error: > Could not resolve ...
Read more >
Build Gradle dependency from source - Kotlin Discussions
In my multiplatform project I added a dependency on org.jetbrains.kotlinx:kotlinx-collections-immutable:0.3.2. I am using version 1.4-M1, ...
Read more >
org.jetbrains.kotlinx : kotlinx-collections-immutable : 0.3.4
kotlinx -collections-immutable - Kotlin Immutable Collections multiplatform library.
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