After updating to Kotlin 2.2.0 the dreaded linker ...
# touchlab-tools
j
After updating to Kotlin 2.2.0 the dreaded linker issue with kermit-crashlytics returned:
Copy code
dyld[42183]: symbol not found in flat namespace '_FIRCLSExceptionRecordNSException'
This only happens when running tests. I have disabled the native cache, applied the
crashkios
plugin and also added the linker options manually to no avail:
Copy code
compilerOptions.freeCompilerArgs.addAll(
    "-linker-options",
    "-U _FIRCLSExceptionRecordNSException ",
)
What changed?