You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using CrashKiOS crash reporting library in commonMain with iOS, Android and JVM Desktop targets crashes build because CrashKiOS does not support the JVM target.
Is there any way to get around this issue in the dependency three?
What would it take to add a JVM target?
The text was updated successfully, but these errors were encountered:
@jQrgen@nanthakumarg
JVM probably doesn't have a Crashlytics SDK (There's nothing in the dashboard about JVM and Desktop too)
We use our dependecies like this at the moment
val commonMain by getting {
dependencies {
// Logger
implementation(libs.kermit)
}
}
val mobileMain by creating {
dependsOn(commonMain)
dependencies {
// Logger
implementation(libs.crashkios)
implementation(libs.kermit.crashlytics)
}
}
val androidMain by getting {
dependsOn(mobileMain)
dependencies {
// Android specific dependencies
}
}
val iosMain by getting {
dependsOn(mobileMain)
dependencies {
// iOS specific dependencies
}
}
Then you can create shared/src/mobileMain that will contain common code for mobile
Using CrashKiOS crash reporting library in commonMain with iOS, Android and JVM Desktop targets crashes build because CrashKiOS does not support the JVM target.
Is there any way to get around this issue in the dependency three?
What would it take to add a JVM target?
The text was updated successfully, but these errors were encountered: