Hi There, one of our KMM project, we are publishin...
# multiplatform
s
Hi There, one of our KMM project, we are publishing the feature to maven and trying to use in native android, I started seeing this weird error of
Could not find org.jetbrains.skiko:skik0:0.8.15.
even though my KMM project uses skiko dep, still seeing this error.
Caused by: java.lang.ClassNotFoundException: Didn't find class "org.jetbrains.skia.Point" on path: DexPathList[[zip file "/data/app/~~w5O9iHKtOYBXKDjhxcdK6g==/xyz.penpencil.physicswala-7rSgxR3qf-IRIqYZ4Ow-Mw==/base.apk", zip file
y
Why a 0? skik0
s
thanks for pointing it. but started seeing new issue
Caused by: java.lang.ClassNotFoundException: Didn't find class "org.jetbrains.skia.Point" on path: DexPathList[[zip file "/data/app/~~w5O9iHKtOYBXKDjhxcdK6g==/xyz.penpencil.physicswala-7rSgxR3qf-IRIqYZ4Ow-Mw==/base.apk", zip file
when I run the app in android app wherever org.jetbrain.skia.point is used
I am able to resolve the error, it was due to my native project level build.gradle not having this following
Copy code
maven {
    url "<https://maven.pkg.jetbrains.space/public/p/compose/dev>"
    content {
        includeGroup "org.jetbrains.skiko"
    }
}