Skip to content

Commit d7f2378

Browse files
authored
fix: Android init crash on API level 23 and below (#61)
* remove sentry exclude * update changelog
1 parent b3b5d42 commit d7f2378

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## Unreleased
4+
5+
### Fixes
6+
7+
- fix: crash on Android API levels 23 and below ([#61](https://github.com/getsentry/sentry-kotlin-multiplatform/pull/61))
8+
39
## 0.0.2
410

511
### Various fixes & improvements

sentry-kotlin-multiplatform/build.gradle.kts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,7 @@ kotlin {
5151

5252
val androidMain by getting {
5353
dependencies {
54-
implementation(Config.Libs.sentryAndroid) {
55-
// avoid duplicate dependencies since we depend on commonJvmMain
56-
exclude("io.sentry", "sentry")
57-
}
54+
implementation(Config.Libs.sentryAndroid)
5855
}
5956
}
6057
val androidUnitTest by getting

0 commit comments

Comments
 (0)