Update buildtools

This commit is contained in:
Jonas Lochmann 2024-07-29 02:00:00 +02:00
parent faea667d98
commit eb680a4f42
No known key found for this signature in database
GPG key ID: 8B8C9AEE10FA5B36
2 changed files with 7 additions and 7 deletions

View file

@ -155,7 +155,7 @@ android {
} }
composeOptions { composeOptions {
kotlinCompilerExtensionVersion = "1.5.5" kotlinCompilerExtensionVersion = "1.5.7"
} }
} }
@ -170,7 +170,7 @@ dependencies {
def paging_version = "3.3.0" def paging_version = "3.3.0"
implementation fileTree(dir: 'libs', include: ['*.jar']) implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.20" implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.21"
implementation 'androidx.appcompat:appcompat:1.7.0' implementation 'androidx.appcompat:appcompat:1.7.0'
implementation 'androidx.core:core:1.13.1' implementation 'androidx.core:core:1.13.1'
implementation 'androidx.cardview:cardview:1.0.0' implementation 'androidx.cardview:cardview:1.0.0'

View file

@ -1,5 +1,5 @@
/* /*
* TimeLimit Copyright <C> 2019 - 2023 Jonas Lochmann * TimeLimit Copyright <C> 2019 - 2024 Jonas Lochmann
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -15,10 +15,10 @@
*/ */
plugins { plugins {
id 'com.android.application' version '8.5.0' apply false id 'com.android.application' version '8.5.1' apply false
id 'com.android.library' version '8.5.0' apply false id 'com.android.library' version '8.5.1' apply false
id 'org.jetbrains.kotlin.android' version "1.9.20" apply false id 'org.jetbrains.kotlin.android' version "1.9.21" apply false
id 'com.google.devtools.ksp' version '1.8.21-1.0.11' apply false id 'com.google.devtools.ksp' version '1.9.21-1.0.16' apply false
id 'androidx.navigation.safeargs' version '2.6.0' apply false id 'androidx.navigation.safeargs' version '2.6.0' apply false
id 'com.squareup.wire' version '4.4.3' apply false id 'com.squareup.wire' version '4.4.3' apply false
} }