Skip to content

Commit 9344975

Browse files
committed
chore: bump dependencies & configuration
1 parent 6303892 commit 9344975

3 files changed

Lines changed: 7 additions & 2 deletions

File tree

build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import org.jetbrains.kotlin.gradle.dsl.JvmTarget
99
import org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile
1010

1111
plugins {
12+
alias(libs.plugins.kotlin.jvm) apply false
1213
alias(libs.plugins.android.application) apply false
1314
alias(libs.plugins.android.library) apply false
1415
alias(libs.plugins.kotlin.dokka) apply false

gradle/libs.versions.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
[versions]
22
agp = "9.2.1"
3+
kotlin = "2.4.0"
34
dokka = "2.2.0"
45
maven-publish = "0.36.0"
5-
betterandroid-android-bom = "1.1.2"
6-
kavaref-bom = "1.0.3"
6+
betterandroid-android-bom = "1.1.3"
7+
kavaref-bom = "1.1.0"
78
# The project current support min sdk version is 21,
89
# suppress the warning about using newer versions of dependencies that may require higher min sdk version.
910
# noinspection GradleDependency
@@ -17,6 +18,7 @@ androidx-test-ext-junit = "1.3.0"
1718
androidx-test-espresso-core = "3.7.0"
1819

1920
[plugins]
21+
kotlin-jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
2022
android-application = { id = "com.android.application", version.ref = "agp" }
2123
android-library = { id = "com.android.library", version.ref = "agp" }
2224
kotlin-dokka = { id = "org.jetbrains.dokka", version.ref = "dokka" }
@@ -30,6 +32,7 @@ betterandroid-ui-extension = { module = "com.highcapable.betterandroid:ui-extens
3032
betterandroid-system-extension = { module = "com.highcapable.betterandroid:system-extension" }
3133
kavaref-bom = { group = "com.highcapable.kavaref", name = "kavaref-bom", version.ref = "kavaref-bom" }
3234
kavaref-core = { group = "com.highcapable.kavaref", name = "kavaref-core" }
35+
kavaref-android = { group = "com.highcapable.kavaref", name = "kavaref-android" }
3336
kavaref-extension = { group = "com.highcapable.kavaref", name = "kavaref-extension" }
3437
androidx-core-ktx = { module = "androidx.core:core-ktx", version.ref = "androidx-core" }
3538
androidx-appcompat = { module = "androidx.appcompat:appcompat", version.ref = "androidx-appcompat" }

pangutext-android/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ android {
2727
dependencies {
2828
implementation(platform(libs.kavaref.bom))
2929
implementation(libs.kavaref.core)
30+
implementation(libs.kavaref.android)
3031
implementation(libs.kavaref.extension)
3132

3233
implementation(platform(libs.betterandroid.android.bom))

0 commit comments

Comments
 (0)