mirror of
https://github.com/nextcloud/android.git
synced 2024-12-18 15:01:57 +03:00
Merge pull request #14105 from nextcloud/renovate/kotlin-monorepo
fix(deps): update kotlin monorepo to v2.1.0
This commit is contained in:
commit
8e4cc74e86
6 changed files with 18 additions and 8 deletions
|
@ -28,10 +28,10 @@ buildscript {
|
|||
}
|
||||
|
||||
plugins {
|
||||
id "org.jetbrains.kotlin.plugin.compose" version "2.0.21"
|
||||
id "org.jetbrains.kotlin.plugin.compose" version "2.1.0"
|
||||
id "com.diffplug.spotless" version "6.25.0"
|
||||
id "org.jetbrains.kotlin.kapt" version "2.0.21"
|
||||
id 'com.google.devtools.ksp' version '2.0.21-1.0.27' apply false
|
||||
id "org.jetbrains.kotlin.kapt" version "2.1.0"
|
||||
id 'com.google.devtools.ksp' version '2.1.0-1.0.29' apply false
|
||||
}
|
||||
|
||||
apply plugin: 'com.android.application'
|
||||
|
|
|
@ -12,7 +12,7 @@ import android.os.Build
|
|||
import java.util.Locale
|
||||
|
||||
class DeviceInfo {
|
||||
val vendor: String = Build.MANUFACTURER.toLowerCase(Locale.ROOT)
|
||||
val vendor: String = Build.MANUFACTURER.lowercase(Locale.ROOT)
|
||||
val apiLevel: Int = Build.VERSION.SDK_INT
|
||||
val androidVersion = Build.VERSION.RELEASE
|
||||
|
||||
|
|
|
@ -40,7 +40,7 @@ class EtmMigrations : EtmBaseFragment() {
|
|||
|
||||
fun showStatus() {
|
||||
val builder = StringBuilder()
|
||||
val status = vm.migrationsStatus.toString().toLowerCase(Locale.US)
|
||||
val status = vm.migrationsStatus.toString().lowercase(Locale.US)
|
||||
builder.append("Migration status: $status\n")
|
||||
val lastMigratedVersion = if (vm.lastMigratedVersion >= 0) {
|
||||
vm.lastMigratedVersion.toString()
|
||||
|
|
|
@ -117,7 +117,7 @@ class PlayerService : Service() {
|
|||
}
|
||||
|
||||
val pendingStop = PendingIntent.getService(this, 0, stop, PendingIntent.FLAG_IMMUTABLE)
|
||||
notificationBuilder.addAction(0, getString(R.string.player_stop).toUpperCase(Locale.getDefault()), pendingStop)
|
||||
notificationBuilder.addAction(0, getString(R.string.player_stop).lowercase(Locale.getDefault()), pendingStop)
|
||||
|
||||
val toggle = Intent(this, PlayerService::class.java).apply {
|
||||
action = ACTION_TOGGLE
|
||||
|
@ -126,7 +126,7 @@ class PlayerService : Service() {
|
|||
val pendingToggle = PendingIntent.getService(this, 0, toggle, PendingIntent.FLAG_IMMUTABLE)
|
||||
notificationBuilder.addAction(
|
||||
0,
|
||||
getString(R.string.player_toggle).toUpperCase(Locale.getDefault()),
|
||||
getString(R.string.player_toggle).lowercase(Locale.getDefault()),
|
||||
pendingToggle
|
||||
)
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ buildscript {
|
|||
documentScannerVersion = "1.1.1"
|
||||
espressoVersion = "3.6.1"
|
||||
jacoco_version = '0.8.12'
|
||||
kotlin_version = '2.0.21'
|
||||
kotlin_version = '2.1.0'
|
||||
markwonVersion = "4.6.2"
|
||||
mockitoVersion = "4.11.0"
|
||||
mockitoKotlinVersion = "4.1.0"
|
||||
|
|
|
@ -14132,6 +14132,11 @@
|
|||
<sha256 value="0378dd9a0864cecdf17a9644e1ca4d698cc90634facf7f504f51a203e5274d2c" origin="Generated by Gradle" reason="Artifact is not signed"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin.kapt" name="org.jetbrains.kotlin.kapt.gradle.plugin" version="2.1.0">
|
||||
<artifact name="org.jetbrains.kotlin.kapt.gradle.plugin-2.1.0.pom">
|
||||
<sha256 value="8347e5c10c0f818183e419da3e98a0e83679b5dd358d07d00495fef377ff69d1" origin="Generated by Gradle" reason="Artifact is not signed"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin.plugin.compose" name="org.jetbrains.kotlin.plugin.compose.gradle.plugin" version="2.0.0">
|
||||
<artifact name="org.jetbrains.kotlin.plugin.compose.gradle.plugin-2.0.0.pom">
|
||||
<sha256 value="38e76d688eddcf2d92ab20838c0adf28d8fd5de2cc965edcd273a9b4f7d636de" origin="Generated by Gradle" reason="Artifact is not signed"/>
|
||||
|
@ -14152,6 +14157,11 @@
|
|||
<sha256 value="f619c327fae9c2249e5199a0f536a49f491157664afad163c8639e740f226d4a" origin="Generated by Gradle" reason="Artifact is not signed"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin.plugin.compose" name="org.jetbrains.kotlin.plugin.compose.gradle.plugin" version="2.1.0">
|
||||
<artifact name="org.jetbrains.kotlin.plugin.compose.gradle.plugin-2.1.0.pom">
|
||||
<sha256 value="fe78fa62efbf0c89ebef4bb0695ab219f41d802e854aafe0fedc561b1bc4a0d7" origin="Generated by Gradle" reason="Artifact is not signed"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlinx" name="atomicfu" version="0.16.1">
|
||||
<artifact name="atomicfu-0.16.1.module">
|
||||
<sha256 value="fdcf04fc25f6a43f557f341ee0053caa25e759f591169c86566f1dad37fc77a6" origin="Generated by Gradle"/>
|
||||
|
|
Loading…
Reference in a new issue