Skip to content

Commit

Permalink
fix(deps): conditionally use androidx.core:core-ktx to v1.10.1 (#1511)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Tommy Nguyen <[email protected]>
  • Loading branch information
renovate[bot] and tido64 authored Jul 17, 2023
1 parent e459e89 commit b9d036c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion android/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,9 @@ ext {
androidAppCompat : "androidx.appcompat:appcompat:1.6.1",
androidCamera : "androidx.camera:camera-camera2:1.2.0-beta02",
androidCameraMlKitVision : "androidx.camera:camera-mlkit-vision:1.2.0-beta02",
androidCoreKotlinExtensions : "androidx.core:core-ktx:1.9.0",
androidCoreKotlinExtensions : kotlinVersionNumber >= 10800
? "androidx.core:core-ktx:1.10.1"
: "androidx.core:core-ktx:1.9.0",
androidEspressoCore : "androidx.test.espresso:espresso-core:3.5.1",
androidJUnit : "androidx.test.ext:junit:1.1.5",
androidJUnitKotlinExtensions: "androidx.test.ext:junit-ktx:1.1.5",
Expand Down

0 comments on commit b9d036c

Please sign in to comment.