Update Gradle & PlatformSDK

- Update Android Gradle Plugin version to 7.3.1
- Update Kotlin version to 1.7.20
This commit is contained in:
2022-10-20 00:09:32 +08:00
parent e0cce05bf1
commit 88d1d1b2b9
4 changed files with 7 additions and 7 deletions

View File

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