Michal Klimczak
11/23/2020, 12:25 PMktor
I get an error (i have narrowed it down to an issue with initializing ktor serializer)
. Not specifically asking about the serializer issue right now, but tell me - is this how the error reports are supposed to look (local build, local simulator), or do I need to somehow symbolicate the debug builds as well? It seems that everyone talks about symbolication of kotlin-native reports in crashlytics in release builds, no one mentions how it works during development.Alexander Black
11/25/2020, 4:37 PMkotlin {
targets.withType<org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTarget> {
binaries.all {
freeCompilerArgs += "-Xadd-light-debug=enable"
}
}
}
you will get very nice stack traces for your Kotlin codeAlexander Black
11/25/2020, 4:39 PMAlexander Black
11/25/2020, 4:39 PMAlexander Black
11/25/2020, 4:40 PMMichal Klimczak
11/26/2020, 7:42 AMadd-light-debug=enable
trick from? I was looking for something similar but didn't find any nice articles about crashes and light debugging of kotlin native apps.Michal Klimczak
11/26/2020, 7:56 AMAlexander Black
11/26/2020, 4:02 PM