Update dependencies

This commit is contained in:
Ricki Hirner 2023-11-13 10:44:31 +01:00
parent 449e886d49
commit 72f0579f41
No known key found for this signature in database
GPG key ID: 79A019FCAAEDD3AA
2 changed files with 13 additions and 13 deletions

View file

@ -50,7 +50,7 @@ android {
composeOptions {
// Keep this in sync with Kotlin version:
// https://developer.android.com/jetpack/androidx/releases/compose-kotlin
kotlinCompilerExtensionVersion = "1.5.3"
kotlinCompilerExtensionVersion = "1.5.4"
}
// Java namespace for our classes (not to be confused with Android package ID)
@ -125,7 +125,7 @@ configurations {
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:${versions.kotlin}"
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3'
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.3'
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.4'
implementation "com.google.dagger:hilt-android:${versions.hilt}"
kapt "com.google.dagger:hilt-android-compiler:${versions.hilt}" // replace by KSP when ready [https://issuetracker.google.com/179057202]
@ -138,9 +138,9 @@ dependencies {
implementation 'androidx.concurrent:concurrent-futures-ktx:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.core:core-ktx:1.12.0'
implementation 'androidx.fragment:fragment-ktx:1.6.1'
implementation 'androidx.hilt:hilt-work:1.0.0'
kapt 'androidx.hilt:hilt-compiler:1.0.0'
implementation 'androidx.fragment:fragment-ktx:1.6.2'
implementation 'androidx.hilt:hilt-work:1.1.0'
kapt 'androidx.hilt:hilt-compiler:1.1.0'
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
implementation 'androidx.lifecycle:lifecycle-viewmodel-compose:2.6.2'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2'
@ -185,7 +185,7 @@ dependencies {
implementation "com.squareup.okhttp3:logging-interceptor:${versions.okhttp}"
//noinspection GradleDependency - don't update until API level 26 (Android 8) is the minimum API [https://github.com/bitfireAT/davx5/issues/130]
implementation 'commons-io:commons-io:2.8.0'
implementation 'dnsjava:dnsjava:3.5.2'
implementation 'dnsjava:dnsjava:3.5.3'
implementation "io.github.nsk90:kstatemachine-jvm:0.22.1"
implementation 'net.openid:appauth:0.11.1'
implementation "org.apache.commons:commons-collections4:${versions.commonsCollections}"

View file

@ -9,15 +9,15 @@ buildscript {
appIntro: '7.0.0-beta02',
composeBom: '2023.10.01',
hilt: '2.48.1',
kotlin: '1.9.10', // keep in sync with * app/build.gradle composeOptions.kotlinCompilerExtensionVersion
// * com.google.devtools.ksp at the end of this file
kotlin: '1.9.20', // keep in sync with * app/build.gradle composeOptions.kotlinCompilerExtensionVersion
// * com.google.devtools.ksp at the end of this file
okhttp: '4.12.0',
room: '2.5.2',
room: '2.6.0',
workManager: '2.9.0-rc01',
// Apache Commons versions
commonsCollections: '4.4',
commonsLang: '3.13.0',
commonsText: '1.10.0',
commonsText: '1.11.0',
// own libraries
cert4android: '2bb3898',
dav4jvm: '1ed89c1',
@ -34,7 +34,7 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:8.1.2'
classpath 'com.android.tools.build:gradle:8.1.3'
classpath "com.google.dagger:hilt-android-gradle-plugin:${versions.hilt}"
classpath "com.mikepenz.aboutlibraries.plugin:aboutlibraries-plugin:${versions.aboutLibraries}"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}"
@ -43,7 +43,7 @@ buildscript {
plugins {
// see https://github.com/google/ksp/releases for version numbers
id 'com.google.devtools.ksp' version '1.9.10-1.0.13' apply false
id 'com.google.devtools.ksp' version '1.9.20-1.0.14' apply false
}
allprojects {
@ -54,4 +54,4 @@ allprojects {
// AppIntro, dav4jvm
maven { url "https://jitpack.io" }
}
}
}