Skip to content

Commit 5dd2325

Browse files
committed
Update dependencies
1 parent 7a366e7 commit 5dd2325

File tree

4 files changed

+59
-20
lines changed

4 files changed

+59
-20
lines changed

.idea/codeStyles/Project.xml

Lines changed: 35 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/src/main/java/org/fcitx/fcitx5/android/input/FcitxInputMethodService.kt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
package org.fcitx.fcitx5.android.input
77

88
import android.annotation.SuppressLint
9-
import android.annotation.TargetApi
109
import android.app.Dialog
1110
import android.content.res.ColorStateList
1211
import android.content.res.Configuration
@@ -581,7 +580,7 @@ class FcitxInputMethodService : LifecycleInputMethodService() {
581580
}
582581
}
583582

584-
@TargetApi(34)
583+
@RequiresApi(34)
585584
override fun onUpdateEditorToolType(toolType: Int) {
586585
super.onUpdateEditorToolType(toolType)
587586
inputDeviceMgr.evaluateOnUpdateEditorToolType(toolType, this)

build-logic/convention/src/main/kotlin/AndroidAppConventionPlugin.kt

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ import org.gradle.api.internal.provider.Providers
1717
import org.gradle.kotlin.dsl.configure
1818
import org.gradle.kotlin.dsl.withType
1919
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
20+
import java.io.File
2021

2122
/**
2223
* The prototype of an Android Application
@@ -141,13 +142,17 @@ class AndroidAppConventionPlugin : AndroidBaseConventionPlugin() {
141142
target.pluginManager.apply(target.libs.plugins.aboutlibraries.get().pluginId)
142143

143144
target.configure<AboutLibrariesExtension> {
144-
configPath = target.rootProject.relativePath(target.file("licenses"))
145-
excludeFields = arrayOf(
146-
"generated", "developers", "organization", "scm", "funding", "content"
147-
)
148-
fetchRemoteLicense = false
149-
fetchRemoteFunding = false
150-
includePlatform = false
145+
collect {
146+
configPath.set(File("licenses"))
147+
fetchRemoteLicense.set(false)
148+
fetchRemoteFunding.set(false)
149+
includePlatform.set(false)
150+
}
151+
export {
152+
excludeFields.set(
153+
setOf("generated", "developers", "organization", "scm", "funding", "content")
154+
)
155+
}
151156
}
152157

153158
target.dependencies.add("coreLibraryDesugaring", target.libs.android.desugarJDKLibs)

gradle/libs.versions.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
[versions]
2-
androidGradlePlugin = "8.9.1"
2+
androidGradlePlugin = "8.10.0"
33
kotlin = "2.1.20"
4-
ksp = "2.1.20-1.0.31"
5-
lifecycle = "2.8.7"
6-
navigation = "2.8.9"
7-
room = "2.6.1"
4+
ksp = "2.1.20-2.0.1"
5+
lifecycle = "2.9.0"
6+
navigation = "2.9.0"
7+
room = "2.7.1"
88
splitties = "3.0.0"
9-
aboutlibraries = "11.6.3"
10-
arrow = "2.0.1"
9+
aboutlibraries = "12.1.2"
10+
arrow = "2.1.1"
1111

1212
[libraries]
1313
android-gradlePlugin = { group = "com.android.tools.build", name = "gradle", version.ref = "androidGradlePlugin" }
1414
android-desugarJDKLibs = { group = "com.android.tools", name = "desugar_jdk_libs", version = "2.1.5" }
1515
kotlin-gradlePlugin = { group = "org.jetbrains.kotlin", name = "kotlin-gradle-plugin", version.ref = "kotlin" }
16-
kotlinx-coroutines = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-android", version = "1.10.1" }
17-
kotlinx-serialization-json = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json", version = "1.8.0" }
16+
kotlinx-coroutines = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-android", version = "1.10.2" }
17+
kotlinx-serialization-json = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json", version = "1.8.1" }
1818
androidx-activity = { module = "androidx.activity:activity-ktx", version = "1.10.1" }
1919
androidx-appcompat = { module = "androidx.appcompat:appcompat", version = "1.7.0" }
2020
androidx-autofill = { module = "androidx.autofill:autofill", version = "1.1.0" }
2121
androidx-constraintlayout = { module = "androidx.constraintlayout:constraintlayout", version = "2.2.1" }
2222
androidx-coordinatorlayout = { module = "androidx.coordinatorlayout:coordinatorlayout", version = "1.3.0" }
23-
androidx-core-ktx = { module = "androidx.core:core-ktx", version = "1.15.0" }
23+
androidx-core-ktx = { module = "androidx.core:core-ktx", version = "1.16.0" }
2424
androidx-lifecycle-viewmodel = { module = "androidx.lifecycle:lifecycle-viewmodel-ktx", version.ref = "lifecycle" }
2525
androidx-lifecycle-livedata = { module = "androidx.lifecycle:lifecycle-livedata-ktx", version.ref = "lifecycle" }
2626
androidx-lifecycle-runtime = { module = "androidx.lifecycle:lifecycle-runtime-ktx", version.ref = "lifecycle" }
@@ -71,4 +71,4 @@ ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" }
7171
aboutlibraries = { id = "com.mikepenz.aboutlibraries.plugin", version.ref = "aboutlibraries" }
7272
kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
7373
kotlin-parcelize = { id = "org.jetbrains.kotlin.plugin.parcelize", version.ref = "kotlin" }
74-
gitVersion = { id = "com.palantir.git-version", version = "3.1.0" }
74+
gitVersion = { id = "com.palantir.git-version", version = "3.2.0" }

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy