Hello, I'm trying to implement Crashlytics in a KM...
# touchlab-tools
a
Hello, I'm trying to implement Crashlytics in a KMP project. The native implementations are working well for Android and iOS, but now I'm having trouble getting report from the Kotlin Shared code on iOS. I've implemented Crashkios by following what's in the doc: https://crashkios.touchlab.co/docs/crashlytics But I still get an error about missing dSYM on Crashlytics for Kotlin related crashes. So I'm now trying to implement step 3a and 3b from the doc even though I have the following in my gradle file:
Copy code
listOf(
        iosX64(),
        iosArm64(),
        iosSimulatorArm64()
    ).forEach { target ->
        target.binaries.framework {
            ...
            isStatic = true
            ...
}
But I don't know how to adapt the following script for local SPM integration:
Copy code
Pods/FirebaseCrashlytics/upload-symbols -gsp ios/GoogleService-Info.plist -p ios ../shared/build/cocoapods/framework/shared.framework.dSYM
I've looked into my module's build folder but couldn't find any .dSYM.