1
0
Fork 0
mirror of https://github.com/MatomoCamp/matomocamp-companion-android.git synced 2024-09-19 16:13:46 +02:00

update Gradle plugin, Room, Paging

This commit is contained in:
Christophe Beyls 2022-03-11 17:18:29 +01:00
parent 523f6812b5
commit 7da79cbc1b
2 changed files with 4 additions and 4 deletions

View file

@ -98,7 +98,7 @@ afterEvaluate {
dependencies {
def lifecycle_version = "2.4.1"
def room_version = "2.4.1"
def room_version = "2.4.2"
def okhttp_version = "3.12.13"
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'
@ -120,7 +120,7 @@ dependencies {
implementation 'androidx.browser:browser:1.4.0'
implementation "androidx.lifecycle:lifecycle-runtime-ktx:$lifecycle_version"
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version"
implementation 'androidx.paging:paging-runtime:3.1.0'
implementation 'androidx.paging:paging-runtime:3.1.1'
implementation "androidx.room:room-ktx:$room_version"
implementation "androidx.room:room-paging:$room_version"
implementation "androidx.datastore:datastore-preferences:1.0.0"

View file

@ -2,14 +2,14 @@
buildscript {
ext {
kotlin_version = '1.6.10'
hilt_version = '2.40.5'
hilt_version = '2.41'
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.1.1'
classpath 'com.android.tools.build:gradle:7.1.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
}