mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-12-18 14:42:16 +03:00
Merge pull request #4491 from nextcloud/renovate/kotlin-monorepo
Update kotlin monorepo to v2.1.0
This commit is contained in:
commit
be4539798a
3 changed files with 4 additions and 4 deletions
|
@ -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'
|
||||
|
|
|
@ -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 +
|
||||
" (" +
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
buildscript {
|
||||
|
||||
ext {
|
||||
kotlinVersion = '2.0.21'
|
||||
kotlinVersion = '2.1.0'
|
||||
hilt_version = '2.44'
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue