Skip to content

Commit

Permalink
perf: 升级依赖
Browse files Browse the repository at this point in the history
  • Loading branch information
lisonge committed Nov 22, 2023
1 parent f40e8d4 commit ac68929
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 18 deletions.
3 changes: 0 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,3 @@ kotlin.code.style=official
#org.gradle.java.home=D\:/User/Documents/lisonge/.jdks/corretto-11.0.13
#android.experimental.legacyTransform.forceNonIncremental=true
android.debug.obsoleteApi=true
kotlin.js.compiler=ir
kotlin.mpp.enableGranularSourceSetsMetadata=true
kotlin.native.enableDependencyPropagation=false
28 changes: 13 additions & 15 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dependencyResolutionManagement {

versionCatalogs {
create("libs") {
val kotlinVersion = "1.9.10"
val kotlinVersion = "1.9.20"
// use jdk17
version("jdkVersion", JavaVersion.VERSION_17.majorVersion)
version("kotlinVersion", kotlinVersion)
Expand All @@ -38,18 +38,16 @@ dependencyResolutionManagement {
version("android.buildToolsVersion", "34.0.0")
version("android.minSdk", "26")

library("android.gradle", "com.android.tools.build:gradle:8.1.2")
plugin("android.library", "com.android.library").version("8.1.2")
plugin("android.application", "com.android.application").version("8.1.2")
library("android.gradle", "com.android.tools.build:gradle:8.1.4")
plugin("android.library", "com.android.library").version("8.1.4")
plugin("android.application", "com.android.application").version("8.1.4")

// 当前 android 项目 kotlin 的版本
library(
"kotlin.gradle.plugin",
"org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
"kotlin.gradle.plugin", "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
)
library(
"kotlin.serialization",
"org.jetbrains.kotlin:kotlin-serialization:$kotlinVersion"
"kotlin.serialization", "org.jetbrains.kotlin:kotlin-serialization:$kotlinVersion"
)
library(
"kotlin.stdlib.common", "org.jetbrains.kotlin:kotlin-stdlib-common:$kotlinVersion"
Expand All @@ -68,7 +66,7 @@ dependencyResolutionManagement {

// compose 编译器的版本, 需要注意它与 compose 的版本没有关联
// https://mvnrepository.com/artifact/androidx.compose.compiler/compiler
version("compose.compilerVersion", "1.5.3")
version("compose.compilerVersion", "1.5.4")
val composeVersion = "1.5.4"
library("compose.ui", "androidx.compose.ui:ui:$composeVersion")
library("compose.preview", "androidx.compose.ui:ui-tooling-preview:$composeVersion")
Expand All @@ -78,7 +76,7 @@ dependencyResolutionManagement {
library("compose.activity", "androidx.activity:activity-compose:1.8.1")

// https://github.com/Tencent/MMKV/blob/master/README_CN.md
library("tencent.mmkv", "com.tencent:mmkv:1.3.1")
library("tencent.mmkv", "com.tencent:mmkv:1.3.2")
// https://bugly.qq.com/docs/user-guide/instruction-manual-android/
library("tencent.bugly", "com.tencent.bugly:crashreport:4.1.9.3")

Expand Down Expand Up @@ -156,7 +154,7 @@ dependencyResolutionManagement {

library(
"kotlinx.serialization.json",
"org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.0"
"org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.1"
)

// https://github.com/Kotlin/kotlinx.collections.immutable
Expand All @@ -168,7 +166,7 @@ dependencyResolutionManagement {
// https://developer.android.com/reference/kotlin/org/json/package-summary
library("org.json", "org.json:json:20210307")

plugin("google.ksp", "com.google.devtools.ksp").version("1.9.10-1.0.13")
plugin("google.ksp", "com.google.devtools.ksp").version("1.9.20-1.0.14")

plugin("google.hilt", "com.google.dagger.hilt.android").version("2.48.1")
library("google.hilt.android", "com.google.dagger:hilt-android:2.48.1")
Expand All @@ -177,14 +175,14 @@ dependencyResolutionManagement {
"com.google.dagger:hilt-android-compiler:2.48.1"
)
library(
"androidx.hilt.navigation.compose", "androidx.hilt:hilt-navigation-compose:1.0.0"
"androidx.hilt.navigation.compose", "androidx.hilt:hilt-navigation-compose:1.1.0"
)

// https://github.com/raamcosta/compose-destinations
library(
"destinations.core", "io.github.raamcosta.compose-destinations:core:1.9.54"
"destinations.core", "io.github.raamcosta.compose-destinations:core:1.9.55"
)
library("destinations.ksp", "io.github.raamcosta.compose-destinations:ksp:1.9.54")
library("destinations.ksp", "io.github.raamcosta.compose-destinations:ksp:1.9.55")

library("coil.compose", "io.coil-kt:coil-compose:2.5.0")
library("coil.gif", "io.coil-kt:coil-gif:2.5.0")
Expand Down

0 comments on commit ac68929

Please sign in to comment.