andylamax
01/13/2022, 11:55 PMkotlin-css
bug from kotlin wrappers?
The symbol of unexpected type encountered during IR deserialization: IrClassPublicSymbolImpl, kotlinx.css/CssDeclarations|null[0]. IrTypeAliasSymbol is expected.
This could happen if there are two libraries, where one library was compiled against the different version of the other library than the one currently used in the project. Please check that the project configuration is correct and has consistent versions of dependencies.
The list of libraries that depend on "org.jetbrains.kotlin-wrappers:kotlin-css" and may lead to conflicts:
1. "com.picortex:bitframe-events-react" (depends on the library with unknown version: "org.jetbrains.kotlin-wrappers:kotlin-css")
2. "com.picortex:bitframe-sdk-client-react" (depends on the library with unknown version: "org.jetbrains.kotlin-wrappers:kotlin-css")
. . .
That list goes on.
Dependency graphs in threadandylamax
01/13/2022, 11:56 PM| | +--- tz.co.asoft:kotlinx-browser:1.4.50
| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0-native-mt (*)
| | | +--- org.jetbrains.kotlinx:kotlinx-html:0.7.3
| | | | \--- org.jetbrains.kotlinx:kotlinx-html-js:0.7.3 (*)
| | | +--- org.jetbrains.kotlin-wrappers:kotlin-extensions:1.0.1-pre.240-kotlin-1.5.30 -> 1.0.1-pre.289-kotlin-1.6.10 (*)
| | | +--- org.jetbrains.kotlin-wrappers:kotlin-css:1.0.0-pre.240-kotlin-1.5.30 -> 1.0.0-pre.289-kotlin-1.6.10 (*)
| | | \--- org.jetbrains.kotlin:kotlin-stdlib-js:1.6.10
| | +--- org.jetbrains.kotlin-wrappers:kotlin-css:1.0.0-pre.289-kotlin-1.6.10 (*)
A portion of my dependency graph as reported by the kotlin compiler looks like this
| | +--- stdlib:viewmodel-react (*)
| | +--- org.jetbrains.kotlin-wrappers:kotlin-css (*)
| | | ^^^ This module contains symbol kotlinx.css/CssDeclarations|null[0] that is the cause of the conflict.
| | +--- org.jetbrains.kotlin-wrappers:kotlin-csstype (*)
| | +--- org.jetbrains.kotlin-wrappers:kotlin-extensions (*)
What seems to be the problem here?andylamax
01/14/2022, 12:45 AM\--- org.jetbrains.kotlin-wrappers:kotlin-css:{strictly 1.0.0-pre.289-kotlin-1.6.10} -> 1.0.0-pre.289-kotlin-1.6.10 (*)
andylamax
01/14/2022, 1:52 AMturansky
01/14/2022, 6:02 AMturansky
01/14/2022, 6:04 AMandylamax
01/14/2022, 8:07 AMandylamax
01/14/2022, 8:14 AMturansky
01/14/2022, 10:41 AMAny known workarounds??
1.6.20-dev
(unsafe)turansky
01/14/2022, 10:46 AMCssDeclarations
- class, it looks like another problemturansky
01/14/2022, 10:54 AMturansky
01/14/2022, 10:54 AM1.0.0-pre.240-kotlin-1.5.30
- how?turansky
01/14/2022, 10:55 AMandylamax
01/14/2022, 11:32 AM1.0.0-pre.240-kotlin-1.5.30
but gradle resolves it to 1.0.0-pre.289-kotlin-1.6.10
. I doubt even if I update the transitive dependency the problem would not be solved. But I shall give it a tryturansky
01/14/2022, 5:01 PMandylamax
01/18/2022, 2:11 PM