Kotlin Multiplatform with iOS, Android and JVM Desktop targets #94
jQrgen
started this conversation in
Feature request
Replies: 2 comments
|
same issue here too. +1 |
0 replies
|
@jQrgen @nanthakumarg 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 |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
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?
All reactions