File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 20
20
native <methods>;
21
21
}
22
22
```
23
+ - Fix abstract method error in `SentrySupportSQLiteDatabase` ([#4597](https://github.com/getsentry/sentry-java/pull/4597))
23
24
24
25
## 8.18.0
25
26
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ androidx-lifecycle-common-java8 = { module = "androidx.lifecycle:lifecycle-commo
79
79
androidx-lifecycle-process = { module = " androidx.lifecycle:lifecycle-process" , version.ref = " androidxLifecycle" }
80
80
androidx-navigation-runtime = { module = " androidx.navigation:navigation-runtime" , version.ref = " androidxNavigation" }
81
81
androidx-navigation-compose = { module = " androidx.navigation:navigation-compose" , version.ref = " androidxNavigation" }
82
- androidx-sqlite = { module = " androidx.sqlite:sqlite" , version = " 2.3.1 " }
82
+ androidx-sqlite = { module = " androidx.sqlite:sqlite" , version = " 2.5.2 " }
83
83
androidx-recyclerview = { module = " androidx.recyclerview:recyclerview" , version = " 1.2.1" }
84
84
coil-compose = { module = " io.coil-kt:coil-compose" , version = " 2.6.0" }
85
85
commons-compress = {module = " org.apache.commons:commons-compress" , version = " 1.25.0" }
Original file line number Diff line number Diff line change @@ -54,7 +54,14 @@ android {
54
54
}
55
55
}
56
56
57
- kotlin { explicitApi() }
57
+ kotlin {
58
+ explicitApi()
59
+ compilerOptions {
60
+ // skip metadata version check, as androidx.sqlite:sqlite is compiled against a newer version of
61
+ // Kotlin
62
+ freeCompilerArgs.add(" -Xskip-metadata-version-check" )
63
+ }
64
+ }
58
65
59
66
dependencies {
60
67
api(projects.sentry)
You can’t perform that action at this time.
0 commit comments