hi, anyone managed to track crashes with crashlyti...
# multiplatform
b
hi, anyone managed to track crashes with crashlytics for ios? i managed to implement everything but if i let it crash from the kotlin code, no crash report gets sent. if i let it crash from ios code, a report gets sent the next time the app gets opened
f
Not so many solution for supporting crash report on iOS. • https://github.com/touchlab/CrashKiOS ◦ crashlytics/bugsnag • https://docs.sentry.io/platforms/kotlin-multiplatform/
⬆️ 1
b
thank you. i already took a look at crashkios and as far as i could see, there is no installation guide or anything except the example
f
Allmost all are base on this one https://github.com/rickclephas/NSExceptionKt
But there are very few API available, crashlytics and bugsnag are available because their API are enough flexible/open.
In all cases, A crash is sent on relaunch, just it need to be correctly built
k