Disable jetifier, update Picasso

This commit is contained in:
tzugen 2022-08-18 15:39:44 +02:00
parent 1a354765f9
commit 15a382904a
No known key found for this signature in database
GPG Key ID: 61E9C34BC10EC930
3 changed files with 7 additions and 3 deletions

View File

@ -10,4 +10,4 @@ kotlin.caching.enabled=true
kotlin.incremental.usePreciseJavaTracking=true
android.useAndroidX=true
android.enableJetifier=true
android.enableJetifier=false

View File

@ -27,7 +27,7 @@ retrofit = "2.9.0"
jackson = "2.10.1"
okhttp = "4.10.0"
koin = "3.2.0"
picasso = "2.71828"
picasso = "2.8"
junit4 = "4.13.2"
junit5 = "5.8.1"

View File

@ -37,17 +37,18 @@ android {
applicationIdSuffix ".debug"
}
}
sourceSets {
main.java.srcDirs += "${projectDir}/src/main/kotlin"
test.java.srcDirs += "${projectDir}/src/test/kotlin"
}
packagingOptions {
resources {
excludes += ['META-INF/LICENSE']
}
}
kotlinOptions {
jvmTarget = "1.8"
}
@ -67,6 +68,7 @@ android {
arg("room.schemaLocation", "$rootDir/ultrasonic/schemas".toString())
}
}
lint {
baseline = file("lint-baseline.xml")
abortOnError true
@ -135,4 +137,6 @@ dependencies {
testImplementation libs.robolectric
implementation libs.timber
}