updated to 22.0.1

This commit is contained in:
Fr4nz D13trich 2025-10-04 10:56:01 +02:00
parent 9fc8a043ba
commit 44a570528b
243 changed files with 14828 additions and 3056 deletions

View file

@ -11,7 +11,7 @@
buildscript {
ext {
kotlinVersion = '2.2.0'
kotlinVersion = '2.2.20'
}
repositories {
@ -21,12 +21,12 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:8.11.1'
classpath 'com.android.tools.build:gradle:8.13.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${kotlinVersion}"
classpath "org.jetbrains.kotlin:kotlin-serialization:${kotlinVersion}"
classpath 'com.github.spotbugs.snom:spotbugs-gradle-plugin:6.2.2'
classpath 'com.github.spotbugs.snom:spotbugs-gradle-plugin:6.2.7'
classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.23.8"
classpath "org.jlleitschuh.gradle:ktlint-gradle:13.0.0"
classpath "org.jlleitschuh.gradle:ktlint-gradle:13.1.0"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
@ -42,10 +42,10 @@ allprojects {
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
maven { url = 'https://jitpack.io' }
}
}
tasks.register('clean', Delete) {
delete rootProject.buildDir
delete rootProject.layout.buildDirectory
}