gradle 8.2.0

This commit is contained in:
Milos Kozak 2023-12-01 14:13:19 +01:00
parent 6e94f7ab2d
commit 56937dc704
5 changed files with 7 additions and 4 deletions

View file

@ -153,6 +153,7 @@ android {
//Deleting it causes a binding error
buildFeatures {
dataBinding = true
buildConfig = true
}
}

View file

@ -8,7 +8,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath("com.android.tools.build:gradle:8.1.4")
classpath("com.android.tools.build:gradle:8.2.0")
classpath("com.google.gms:google-services:4.4.0")
classpath("com.google.firebase:firebase-crashlytics-gradle:2.9.9")

View file

@ -1,7 +1,7 @@
object KtsBuildVersions {
const val gradle = "8.1.3"
const val kotlin = "1.9.0"
const val gradle = "8.2.0"
const val kotlin = "1.9.10"
}
plugins {

View file

@ -32,5 +32,4 @@ android.nonTransitiveRClass=true
# null: KtCallExpression
# https://youtrack.jetbrains.com/issue/KT-58027
kapt.use.jvm.ir=false
android.defaults.buildfeatures.buildconfig=true
android.nonFinalResIds=true

View file

@ -86,6 +86,9 @@ android {
versionName = Versions.appVersion + "-aapsclient2"
}
}
buildFeatures {
buildConfig = true
}
}
allprojects {