Skip to content

Commit

Permalink
chore: upgrade Gradle dependencies (#34)
Browse files Browse the repository at this point in the history
* Synced with android-14.0.0_r55 tag (August security patches).

Signed-off-by: iusmac <iusico.maxim@libero.it>
  • Loading branch information
iusmac authored Sep 4, 2024
1 parent 8c23422 commit fe09626
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ buildscript {
// https://mvnrepository.com/artifact/com.google.dagger/hilt-android
// https://mvnrepository.com/artifact/com.google.dagger/hilt-compiler
// https://android.googlesource.com/platform/external/dagger2
def hilt_version = '2.46.1'
def hilt_version = '2.47'
libs = [
// https://mvnrepository.com/artifact/androidx.annotation/annotation
// https://android.googlesource.com/platform/prebuilts/sdk/+/refs/heads/main/current/androidx/m2repository/androidx/annotation/annotation-jvm/
Expand All @@ -20,7 +20,7 @@ buildscript {
appcompat : 'androidx.appcompat:appcompat:1.7.0-beta01',
// https://mvnrepository.com/artifact/androidx.biometric/biometric
// https://android.googlesource.com/platform/prebuilts/sdk/+/refs/heads/main/current/androidx/m2repository/androidx/biometric/biometric/
biometric : 'androidx.biometric:biometric:1.2.0-alpha05', // TODO: AOSP sources use 1.2.0-alpha06; upgrade when available in maven central
biometric : 'androidx.biometric:biometric:1.2.0-alpha05',
// https://mvnrepository.com/artifact/androidx.collection/collection
// https://android.googlesource.com/platform/prebuilts/sdk/+/refs/heads/main/current/androidx/m2repository/androidx/collection/collection-jvm/
collection : 'androidx.collection:collection:1.4.0-alpha02',
Expand All @@ -29,28 +29,28 @@ buildscript {
coordinatorlayout : 'androidx.coordinatorlayout:coordinatorlayout:1.3.0-alpha01',
// https://mvnrepository.com/artifact/androidx.core/core
// https://android.googlesource.com/platform/prebuilts/sdk/+/refs/heads/main/current/androidx/m2repository/androidx/core/core/
core : 'androidx.core:core:1.13.0-alpha01',
core : 'androidx.core:core:1.13.0-beta01',
// https://mvnrepository.com/artifact/com.google.errorprone/error_prone_core
errorprone : 'com.google.errorprone:error_prone_core:2.30.0',
hilt_android : "com.google.dagger:hilt-android:$hilt_version",
hilt_compiler : "com.google.dagger:hilt-compiler:$hilt_version",
// https://mvnrepository.com/artifact/androidx.lifecycle/lifecycle-livedata
// https://android.googlesource.com/platform/prebuilts/sdk/+/refs/heads/main/current/androidx/m2repository/androidx/lifecycle/lifecycle-livedata/
livedata : 'androidx.lifecycle:lifecycle-livedata:2.7.0-alpha02',
livedata : 'androidx.lifecycle:lifecycle-livedata:2.8.0-alpha02',
// https://mvnrepository.com/artifact/com.google.android.material/material
// https://android.googlesource.com/platform/prebuilts/sdk/+/refs/heads/main/current/extras/material-design-x/com/google/android/material/material/
material : 'com.google.android.material:material:1.7.0-alpha03',
// https://mvnrepository.com/artifact/androidx.preference/preference
// https://android.googlesource.com/platform/prebuilts/sdk/+/refs/heads/main/current/androidx/m2repository/androidx/preference/preference/
preference : 'androidx.preference:preference:1.2.1', // TODO: AOSP sources use 1.3.0-alpha01; upgrade when available in maven central
preference : 'androidx.preference:preference:1.2.1',
// https://mvnrepository.com/artifact/androidx.recyclerview/recyclerview
// https://android.googlesource.com/platform/prebuilts/sdk/+/refs/heads/main/current/androidx/m2repository/androidx/recyclerview/recyclerview/
recyclerview : 'androidx.recyclerview:recyclerview:1.3.0-alpha01',
recyclerview : 'androidx.recyclerview:recyclerview:1.4.0-alpha01',
room_compiler : "androidx.room:room-compiler:$room_version",
room_runtime : "androidx.room:room-runtime:$room_version",
// https://mvnrepository.com/artifact/androidx.lifecycle/lifecycle-viewmodel
// https://android.googlesource.com/platform/prebuilts/sdk/+/refs/heads/main/current/androidx/m2repository/androidx/lifecycle/lifecycle-viewmodel/
viewmodel : 'androidx.lifecycle:lifecycle-viewmodel:2.7.0-alpha02'
viewmodel : 'androidx.lifecycle:lifecycle-viewmodel:2.8.0-alpha02'
]
}
}
Expand Down

0 comments on commit fe09626

Please sign in to comment.