Drake Gebhart
10/18/2025, 5:56 AMimport NSExceptionKtBugsnag. Then I tried Crashkios and I followed the tutorial to the end and it failed on BugsnagConfigKt.startBugsnag(config: config) because it didn't recognize BugsnagConfigKt . I feel like I'm taking crazy pills when they both won't work! Bugsnag works fine and its in the same spot, so I'm pretty confused 😖
I also used a basic CMP project to verify it wasn't anything weird with my configFrançois
10/18/2025, 6:31 AMFrançois
10/18/2025, 6:32 AMFrançois
10/18/2025, 6:33 AMRick Clephas
10/18/2025, 9:05 AMDrake Gebhart
10/18/2025, 7:00 PMcommonMain.dependencies {
...
api("co.touchlab.crashkios:bugsnag:0.8.6")
}
gradle.properties:
kotlin.native.cacheKind.iosX64=none
kotlin.native.cacheKind.iosSimulatorArm64=none
I tried doing this, but sendHandledException doesn't exist
Bugsnag.sendHandledException(Exception("Some exception"))
Then in build.gradle.kts for my cocoapods I did
cocoapods {
summary = "My app"
homepage = "Link to the Shared Module homepage"
version = "1.0.0"
ios.deploymentTarget = "16.0"
podfile = project.file("../iosApp/Podfile")
framework {
baseName = "shared"
isStatic = true
export("co.touchlab.crashkios:bugsnag:0.8.6")
}
}Rick Clephas
10/18/2025, 8:29 PMDrake Gebhart
10/19/2025, 6:31 AMRick Clephas
10/19/2025, 8:33 PMkpgalligan
10/22/2025, 6:03 PM