Update Kotlin version to 1.7.10

This commit is contained in:
2022-07-15 02:14:27 +08:00
parent 5fdcfa1420
commit b9810c0e98
3 changed files with 4 additions and 4 deletions

View File

@@ -2,7 +2,7 @@
plugins { plugins {
id 'com.android.application' version '7.2.1' apply false id 'com.android.application' version '7.2.1' apply false
id 'com.android.library' version '7.2.1' apply false id 'com.android.library' version '7.2.1' apply false
id 'org.jetbrains.kotlin.android' version '1.7.0' apply false id 'org.jetbrains.kotlin.android' version '1.7.10' apply false
} }
ext { ext {

View File

@@ -1,7 +1,7 @@
plugins { plugins {
id 'com.android.application' id 'com.android.application'
id 'org.jetbrains.kotlin.android' id 'org.jetbrains.kotlin.android'
id 'com.google.devtools.ksp' version '1.7.0-1.0.6' id 'com.google.devtools.ksp' version '1.7.10-1.0.6'
} }
android { android {

View File

@@ -1,7 +1,7 @@
plugins { plugins {
id 'java-library' id 'java-library'
id 'org.jetbrains.kotlin.jvm' id 'org.jetbrains.kotlin.jvm'
id 'com.google.devtools.ksp' version '1.7.0-1.0.6' id 'com.google.devtools.ksp' version '1.7.10-1.0.6'
id 'maven-publish' id 'maven-publish'
id 'signing' id 'signing'
} }
@@ -28,7 +28,7 @@ tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).configureEach {
dependencies { dependencies {
implementation 'com.google.auto.service:auto-service-annotations:1.0.1' implementation 'com.google.auto.service:auto-service-annotations:1.0.1'
compileOnly 'com.google.devtools.ksp:symbol-processing-api:1.7.0-1.0.6' compileOnly 'com.google.devtools.ksp:symbol-processing-api:1.7.10-1.0.6'
ksp 'dev.zacsweers.autoservice:auto-service-ksp:1.0.0' ksp 'dev.zacsweers.autoservice:auto-service-ksp:1.0.0'
} }