-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
1.8.0-RC Could not find "org.jetbrains.kotlinx:atomicfu-cinterop-interop" #3968
Comments
Explicitely adding PS: also tried disabling konan caches like in KT-44884 but didn't seem to help much |
try this |
@hoangchungk53qx1 , that issue was from last year and fixed in atomicfu 0.17.2. The same workaround works (adding the dependency explicitely) but I'd say this is a new one. |
Citing @mvicsokolova's words: The problem is on kotlinx.atomicfu side: the new version of atomicfu-gradle-plugin does not provide coroutines with a transitive dependency to atomicfu anymore. Though it's required because coroutines use inline declarations from kotlinx-atomicfu.The WA for now is adding atomicfu implementation dependency for the native sourceSets: val nativeMain by creating {
dependencies {
implementation("org.jetbrains.kotlinx:atomicfu:0.23.1")
}
} And I'll prepare the new release of atomicfu where this dependency is provided by atomicfu-gradle-plugin. |
Trying to build an
iosArm64
target with version1.8.0-RC
, I get hit by this error:Reproducer here. Am I missing something?
The text was updated successfully, but these errors were encountered: