diff --git a/CHANGELOG.md b/CHANGELOG.md index b2cc9eb4..6b8b516f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## Unreleased + +### Fixes + +- fix: crash on Android API levels 23 and below ([#61](https://github.com/getsentry/sentry-kotlin-multiplatform/pull/61)) + ## 0.0.2 ### Various fixes & improvements diff --git a/sentry-kotlin-multiplatform/build.gradle.kts b/sentry-kotlin-multiplatform/build.gradle.kts index 4e5290f1..48a8a58f 100644 --- a/sentry-kotlin-multiplatform/build.gradle.kts +++ b/sentry-kotlin-multiplatform/build.gradle.kts @@ -51,10 +51,7 @@ kotlin { val androidMain by getting { dependencies { - implementation(Config.Libs.sentryAndroid) { - // avoid duplicate dependencies since we depend on commonJvmMain - exclude("io.sentry", "sentry") - } + implementation(Config.Libs.sentryAndroid) } } val androidUnitTest by getting