kittinunf / Result

The modelling for success/failure of operations in Kotlin and KMM (Kotlin Multiplatform Mobile)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Artifact result-coroutines not found

wellingtoncosta opened this issue · comments

Hi,

Firstly I would like to congratulate you for the awesome project!

I'm trying to use result-coroutines in my project, but Gradle cannot download the artifact. Any idea?

I have the following repositories:

repositories {
    google()
    jcenter()
    maven { url "http://kotlin.bintray.com/kotlinx" }
}

The version 2.0.0 can be found at:

maven { url "https://dl.bintray.com/kittinunf/maven" }

Hmm I think you should be able to get it from the jcenter itself.

Take a look here

https://jcenter.bintray.com/com/github/kittinunf/result/result/2.0.0/

Hi,

I had the same problem. With

repositories {
    jcenter()
}

my IDE was able to resolve com.github.kittinunf.result:result:2.1.0 but unable to resolve com.github.kittinunf.result:result-coroutines:2.1.0.

@wellingtoncosta Thanks for your solution:

The version 2.0.0 can be found at:

maven { url "https://dl.bintray.com/kittinunf/maven" }

@kittinunf Your suggested link contains only result but not result-coroutines:

Hmm I think you should be able to get it from the jcenter itself.

Take a look here

https://jcenter.bintray.com/com/github/kittinunf/result/result/2.0.0/

Please have a look at the following two links:

In addition, i would like to thank you for this and your fuel project.

OHHH! TRUE!

I haven't realized this before at all (I am not a coroutine user myself). I don't know why it doesn't get synced up. I will check this problem out.

Hi folks,
I'm having Could not find com.github.kittinunf.result:result-coroutines:2.2.20. . @kittinunf did you manage to upload it to jcenter?

Thank you

With jfrog shutting down jcenter and bintray. The fix doesn't apply anymore. Is there another repo that holds it? Found it.

@rvazquezglez Is SuspendableResult still needed after #54 was merged? I just started using coroutines and haven't used SuspendableResult.