You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* What went wrong:
Could not determine the dependencies of task ':kotlinNpmInstall'.
> Could not resolve all dependencies for configuration ':client:ui:design:wasmJsNpmAggregated'.
> Could not resolve androidx.annotation:annotation:1.1.0.
...
Forcing androidx.lifecycle:lifecycle-common:2.9.0-alpha04 (latest) doesn't work -- it basically doesn't support "wasmJs" target:
* What went wrong:
Could not determine the dependencies of task ':kotlinNpmInstall'.
> Could not resolve all dependencies for configuration ':client:ui:design:wasmJsNpmAggregated'.
> Could not resolve androidx.lifecycle:lifecycle-common:2.9.0-alpha04.
This is as far as it goes. Basically, coil-gif can't be used with wasmJs at this point.
The text was updated successfully, but these errors were encountered:
This is just to document what's happening.
I'm attempting to add "wasmJs" support in a module which depends on
io.coil-kt.coil3:coil-gif:3.0.0-alpha10
(latest):and it fails to resolve with:
and the chain of dependencies is:
where
androidx.core:core-ktx:1.13.1
is latest stable butandroidx.annotation:annotation:1.1.0
is 5 years old (https://mvnrepository.com/artifact/androidx.annotation/annotation)Forcing
androidx.core:core-ktx:1.15.0-beta01
doesn't help, because it still depends on an old annotation library:Forcing
androidx.annotation:annotation:1.9.0-rc01
does work though:up to
androidx.lifecycle:lifecycle-common:2.6.2
, which is 1 year old (https://mvnrepository.com/artifact/androidx.lifecycle/lifecycle-runtime-ktx)Forcing
androidx.lifecycle:lifecycle-common:2.9.0-alpha04
(latest) doesn't work -- it basically doesn't support "wasmJs" target:This is as far as it goes. Basically,
coil-gif
can't be used withwasmJs
at this point.The text was updated successfully, but these errors were encountered: