diff --git a/build.gradle b/build.gradle index b457d9f..caba255 100644 --- a/build.gradle +++ b/build.gradle @@ -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/ @@ -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', @@ -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' ] } }