Update dependencies and Gradle, Minimum SDK bumped to 23
All checks were successful
Build Android / build (push) Successful in 5m7s

This commit is contained in:
2026-03-30 18:24:39 +02:00
parent ea84eeffc2
commit 0e041b79cf
21 changed files with 122 additions and 133 deletions

View File

@@ -1,12 +1,11 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = "1.9.24"
ext.kotlin_version = '2.2.10'
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.13.2'
classpath 'com.android.tools.build:gradle:9.1.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
@@ -15,9 +14,10 @@ buildscript {
}
plugins {
id 'com.google.dagger.hilt.android' version '2.51.1' apply false
id 'org.jetbrains.kotlin.android' version '1.7.20' apply false
id 'com.google.devtools.ksp' version '1.9.24-1.0.20' apply false
id 'com.google.dagger.hilt.android' version '2.59' apply false
id 'org.jetbrains.kotlin.android' version '2.2.10' apply false
id 'com.google.devtools.ksp' version '2.3.5' apply false
id 'org.jetbrains.kotlin.plugin.compose' version '2.2.10' apply false
}
allprojects {