JakeWharton / retrofit2-kotlin-coroutines-adapter

A Retrofit 2 adapter for Kotlin coroutine's Deferred type.
Apache License 2.0
1.97k stars 129 forks source link

Is the adapter working with Kotlin 1.3? #35

Closed CapMontoro closed 5 years ago

CapMontoro commented 5 years ago

Just updated Android Studio today with new version of Kotlin. Coroutines are now stable.

For some reason my code stop working.

Could you confirm if an update is neccessary with the new import kotlinx.coroutines.* ?

zsmb13 commented 5 years ago

The readme states that you need the non-experimental build of the library, which is this dependency:

implementation 'com.jakewharton.retrofit:retrofit2-kotlin-coroutines-adapter:0.9.2'

Seems to work for me with 1.3 stable.

CapMontoro commented 5 years ago

Fixed. Thank you.