Skip to content

Commit

Permalink
Merge pull request #4491 from nextcloud/renovate/kotlin-monorepo
Browse files Browse the repository at this point in the history
Update kotlin monorepo to v2.1.0
  • Loading branch information
github-actions[bot] authored Nov 29, 2024
2 parents 2d294e8 + 51fc617 commit be45397
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 +
" (" +
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
buildscript {

ext {
kotlinVersion = '2.0.21'
kotlinVersion = '2.1.0'
hilt_version = '2.44'
}

Expand Down

0 comments on commit be45397

Please sign in to comment.