Closed altered-dev closed 1 month ago
android {
configurations.all {
exclude(group = "org.jetbrains.skiko", module = "skiko-awt")
}
}
This workaround works for me.
Please check the following ticket on YouTrack for follow-ups to this issue. GitHub issues will be closed in the coming weeks.
Hello! I am working on a multiplatform project that is using Skiko for rendering. I set up an Android app, but when I ran it, it just ...didn't work.
For the purpose of research I created a minimal Android project with just Skiko as a dependency, so there is no doubt in me having set up the project in a wrong way.
At first, the issue was having duplicate classes (the presence of skiko-awt is suspicious, it's not included in the project):
But when I switched the dependency from
implementation
tocompileOnly
, I got the following message as the crash report (there's no AWT in Android):I also tried downgrading the version down to 0.8.0, which did not help. Is there any solution to this?