filipebaptista
09/26/2024, 3:33 PMkpgalligan
09/26/2024, 4:49 PMHowever it seems that CrashKios doesn't have a way to enable it. I am right?It does not. You are correct. However, it shouldn't matter as you need to do that stuff in your Android code. CrashKios isn't involved there.
kpgalligan
09/26/2024, 4:52 PMenableCrashlytics()
. That doesn't really do anything other than something internal, which should be removed anyway. Long story, but we used to avoid linking issues on iOS builds for tests using that. It doesn't actually do anything with Crashlytics itself. Without that, calls to CrashlyticsKotlin
would noop. In fact, if you don't call CrashlyticsKotlin
from your common code, you could skip CrashKios on android entirely. All of the "work" of CrashKios is for iOS.filipebaptista
09/26/2024, 5:03 PM