Use asm 9.6, kotlin 1.9.1

This commit is contained in:
You Qi
2023-11-01 17:06:39 +08:00
parent 0e86b019a9
commit 63e9740850

View File

@@ -3,12 +3,16 @@ compileSdkVersion = "32"
targetSdkVersion = "32"
minSdkVersion = "21"
androidGradlePlugin = "7.3.1"
androidxAppCompat = "1.3.1"
asm = "9.6"
detekt = "1.22.0"
kotlin = "1.8.21"
junit = "4.13.2"
kotlin = "1.9.10"
ktlintGradle = "11.3.2"
pluginPublish = "1.2.0"
truth = "1.1.5"
versionCheck = "0.46.0"
androidGradlePlugin = "7.3.0"
[plugins]
detekt = { id = "io.gitlab.arturbosch.detekt", version.ref = "detekt" }
@@ -18,9 +22,9 @@ pluginPublish = { id = "com.gradle.plugin-publish", version.ref = "pluginPublish
versionCheck = { id = "com.github.ben-manes.versions", version.ref = "versionCheck" }
[libraries]
junit = "junit:junit:4.13.2"
truth = "com.google.truth:truth:1.1.3"
asm = "org.ow2.asm:asm:9.4"
androidGradlePlugin = { group = "com.android.tools.build", name = "gradle", version.ref = "androidGradlePlugin" }
appcompat = "androidx.appcompat:appcompat:1.3.1"
kotlinStdlib = "org.jetbrains.kotlin:kotlin-stdlib:1.7.20"
appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "androidxAppCompat" }
asm = { group = "org.ow2.asm", name = "asm", version.ref = "asm" }
junit = { group = "junit", name = "junit", version.ref = "junit" }
kotlinStdlib = { group = "org.jetbrains.kotlin", name = "kotlin-stdlib", version.ref = "kotlin" }
truth = { group = "com.google.truth", name = "truth", version.ref = "truth" }