-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
2.0.0-rc1 import crashing in multiplatform project. #93
Comments
When I import the following dependencies to commonMain: implementation("co.touchlab:stately-strict:2.0.0-rc1")
implementation("co.touchlab:stately-concurrency:2.0.0-rc1")
implementation("co.touchlab:stately-concurrent-collections:2.0.0-rc1") I get the following Error:
|
Should I wait for the release candidate or use the deprecated version for using Stately in production? "Release candidate" seems pretty close to production but it is hard to verify. |
Bump! same issue here, we are introducing the library to our project and we get the following error for
https://github.com/wireapp/kalium/actions/runs/4596441816/jobs/8117968805?pr=1614 |
While trying to implement Stately on my project I also stumbled on this issue... Any estimate on when the fix will be applied? Thank you! |
Hey team 👋 Are there any news on this topic ? |
Does it work if you manually add |
Now shows the following error if I add the dependency manually when running tests,
|
Hi team 👋 Quick question. What should be the way to proceed this issue? This PR #96 has been stale for 4 months as well For us is not a big of a deal, as we are currently live and working without this lib, but we wanted to move some implementations making use of this nice collections library module. |
@yamilmedina and anyone else who ended up stumbling on this bug. My build file should be sqeeaky clean after running hundreds of clean/sync/build. But this should fix the Duplicate class fix. (not saying it resolves the main tickets problem): sourceSets {
val commonMain by getting {
dependencies {
/* other implementations */
implementation("co.touchlab:stately-common:2.0.0-rc3")
implementation("co.touchlab:stately-collections:2.0.0-rc3")
implementation("co.touchlab:stately-concurrency:2.0.0-rc3")
implementation("co.touchlab:stately-isolate:2.0.0-rc3")
}
configurations.all {
exclude(group = "co.touchlab", module = "stately-strict-jvm")
}
} |
Thanks @bennysway this workaround helps us, appreciate the effort to pursue it :D |
Latest version should fix this issue. Can anyone confirm once before I close this issue? |
Hello
Is there a Kotlin Multiplatform project example or open source project with a Kotlin/Native target that imports stately
2.0.0-rc1
or a higher version?Using the config from README.md to set up Stately with version
2.0.0
is currently not working.Thanks.
The text was updated successfully, but these errors were encountered: