touchlab / CrashKiOS

Crash reporting for Kotlin/Native iOS applications
https://crashkios.touchlab.co/
Apache License 2.0
258 stars 15 forks source link

Kotlin Multiplatform with iOS, Android and JVM Desktop targets #67

Open jQrgen opened 3 months ago

jQrgen commented 3 months ago

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?

nanthakumarg commented 2 months ago

same issue here too. +1

tamimattafi commented 3 days ago

@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