Merge pull request #4491 from nextcloud/renovate/kotlin-monorepo

Update kotlin monorepo to v2.1.0
This commit is contained in:
github-actions[bot] 2024-11-29 11:21:04 +01:00 committed by GitHub
commit be4539798a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View file

@ -15,7 +15,7 @@ import com.github.spotbugs.snom.SpotBugsTask
plugins {
id "org.jetbrains.kotlin.plugin.compose" version "2.1.0"
id "org.jetbrains.kotlin.kapt"
id 'com.google.devtools.ksp' version '2.0.21-1.0.28'
id 'com.google.devtools.ksp' version '2.1.0-1.0.29'
}
apply plugin: 'com.android.application'

View file

@ -97,8 +97,8 @@ class WebViewLoginActivity : BaseActivity() {
}
private val webLoginUserAgent: String
get() = (
Build.MANUFACTURER.substring(0, 1).toUpperCase(Locale.getDefault()) +
Build.MANUFACTURER.substring(1).toLowerCase(Locale.getDefault()) +
Build.MANUFACTURER.substring(0, 1).uppercase(Locale.getDefault()) +
Build.MANUFACTURER.substring(1).uppercase(Locale.getDefault()) +
" " +
Build.MODEL +
" (" +

View file

@ -11,7 +11,7 @@
buildscript {
ext {
kotlinVersion = '2.0.21'
kotlinVersion = '2.1.0'
hilt_version = '2.44'
}