Update dependencies

This commit is contained in:
Ricki Hirner 2023-10-07 10:01:55 +02:00
parent f57cd77ced
commit e85727e869
No known key found for this signature in database
GPG key ID: 79A019FCAAEDD3AA
3 changed files with 5 additions and 6 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.1"
kotlinCompilerExtensionVersion = "1.5.3"
}
// Java namespace for our classes (not to be confused with Android package ID)

View file

@ -8,7 +8,6 @@ import android.content.Context
import android.os.Build
import android.security.KeyChain
import at.bitfire.cert4android.CustomCertManager
import at.bitfire.cert4android.CustomHostnameVerifier
import at.bitfire.dav4jvm.BasicDigestAuthHandler
import at.bitfire.dav4jvm.UrlUtils
import at.bitfire.davdroid.BuildConfig
@ -274,7 +273,7 @@ class HttpClient private constructor(
val hostnameVerifier =
if (manager != null)
CustomHostnameVerifier(context, OkHostnameVerifier)
manager.HostnameVerifier(OkHostnameVerifier)
else
OkHostnameVerifier

View file

@ -8,7 +8,7 @@ buildscript {
appIntro: '7.0.0-beta02',
composeBom: '2023.10.00',
hilt: '2.48.1',
kotlin: '1.9.0', // keep in sync with * app/build.gradle composeOptions.kotlinCompilerExtensionVersion
kotlin: '1.9.10', // keep in sync with * app/build.gradle composeOptions.kotlinCompilerExtensionVersion
// * com.google.devtools.ksp at the end of this file
okhttp: '4.11.0',
room: '2.5.2',
@ -18,7 +18,7 @@ buildscript {
commonsLang: '3.8.1',
commonsText: '1.3',
// own libraries
cert4android: '32104f5',
cert4android: '2bb3898',
dav4jvm: 'da94a8b',
ical4android: '916f222',
vcard4android: 'b376d2e'
@ -42,7 +42,7 @@ buildscript {
plugins {
// see https://github.com/google/ksp/releases for version numbers
id 'com.google.devtools.ksp' version '1.9.0-1.0.13' apply false
id 'com.google.devtools.ksp' version '1.9.10-1.0.13' apply false
}
allprojects {