Kermit
Kermit copied to clipboard
Integration with Kermit and crashlytics
I am using kotlin 1.6.10
with this option on ios project
linkerOpts.add("-lsqlite3")
Tried to add Kermit library to the dependancies
const val kermit = "co.touchlab:kermit:$version"
const val crashlytics = "co.touchlab:kermit-crashlytics:$version"
the version is 1.0.0
it can build and create framework fine but when I used and ran it on simulator xCode, it give me this error logs
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
IF i removed Kermits completely, its working perfectly fine.
IS there something I missed?