Skip to content

Commit

Permalink
Fix crash on start app on SDK <26 (#2497)
Browse files Browse the repository at this point in the history
- Manually specify databind version to fix FasterXML/jackson-databind#3412, as the Kotlin module still depends on the unfixed version and hasn't had a new release yet
  • Loading branch information
jpelgrom authored May 1, 2022
1 parent f398d1b commit f33743d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ dependencies {
implementation("com.google.android.material:material:1.5.0")

implementation("com.squareup.retrofit2:retrofit:2.9.0")
implementation("com.fasterxml.jackson.core:jackson-databind:2.13.2.2") // remove when jackson-module-kotlin version is higher
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.13.2")
implementation("com.squareup.okhttp3:okhttp:4.9.3")
implementation("com.squareup.picasso:picasso:2.8")
Expand Down
1 change: 1 addition & 0 deletions common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ dependencies {
implementation("com.squareup.retrofit2:converter-jackson:2.9.0")
implementation("com.squareup.okhttp3:okhttp:4.9.3")
implementation("com.squareup.okhttp3:logging-interceptor:4.9.3")
implementation("com.fasterxml.jackson.core:jackson-databind:2.13.2.2") // remove when jackson-module-kotlin version is higher
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.13.2")
implementation("org.altbeacon:android-beacon-library:2.19.4")
}
1 change: 1 addition & 0 deletions wear/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ dependencies {
implementation("com.google.dagger:hilt-android:2.41")
kapt("com.google.dagger:hilt-android-compiler:2.41")

implementation("com.fasterxml.jackson.core:jackson-databind:2.13.2.2") // remove when jackson-module-kotlin version is higher
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.13.2")
implementation("com.squareup.okhttp3:okhttp:4.9.3")

Expand Down

0 comments on commit f33743d

Please sign in to comment.