Hi!
I am having some trouble trying to integrate Sentry into a kotlin multiplatform project. The iOS integration went smoothly following the documentation and so did the Android side of the app but I can’t figure out how to set up the common part of the app. I’m trying to do the following in the common build.gradle ($sentry_version is 3.1.1).
kotlin { sourceSets { commonMain { dependencies { implementation "io.sentry:sentry:$sentry_version" } } } }
However, I can never import sentry once in my code. The Kotlin Sentry page (https://sentry.io/for/kotlin/) doesn’t give more information and the link to the documentation sends to a Page not Found.
Is Sentry not supporting Kotlin multiplatform or am I doing something wrong?
Thanks!