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

upgrade Kotlin, Hilt, Moshi, Room, Gradle plugin

This commit is contained in:
Christophe Beyls 2021-12-25 00:28:55 +01:00
parent 1ad67a4c3b
commit 0ea78d1725
2 changed files with 5 additions and 5 deletions

View file

@ -77,7 +77,7 @@ android {
dependencies {
def lifecycle_version = "2.4.0"
def room_version = "2.3.0"
def room_version = "2.4.0"
def okhttp_version = "3.12.13"
implementation "androidx.multidex:multidex:2.0.1"
@ -106,6 +106,6 @@ dependencies {
exclude group: 'org.bouncycastle', module: 'bcprov-jdk15on'
}
implementation 'com.squareup.okio:okio:3.0.0'
implementation 'com.squareup.moshi:moshi:1.12.0'
implementation 'com.squareup.moshi:moshi:1.13.0'
implementation 'com.github.chrisbanes:PhotoView:2.3.0'
}

View file

@ -1,15 +1,15 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
kotlin_version = '1.5.31'
hilt_version = '2.40.1'
kotlin_version = '1.6.10'
hilt_version = '2.40.5'
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.3'
classpath 'com.android.tools.build:gradle:7.0.4'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
}