From 88d1d1b2b9efd311debb4782560af8c850580417 Mon Sep 17 00:00:00 2001 From: fankesyooni Date: Thu, 20 Oct 2022 00:09:32 +0800 Subject: [PATCH] Update Gradle & PlatformSDK - Update Android Gradle Plugin version to 7.3.1 - Update Kotlin version to 1.7.20 --- build.gradle | 6 +++--- demo-module/build.gradle | 2 +- yukihookapi-ksp-xposed/build.gradle | 4 ++-- yukihookapi/build.gradle | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/build.gradle b/build.gradle index c92a9551..adb36120 100644 --- a/build.gradle +++ b/build.gradle @@ -1,8 +1,8 @@ //file:noinspection unused plugins { - id 'com.android.application' version '7.3.0' apply false - id 'com.android.library' version '7.3.0' apply false - id 'org.jetbrains.kotlin.android' version '1.7.10' apply false + id 'com.android.application' version '7.3.1' apply false + id 'com.android.library' version '7.3.1' apply false + id 'org.jetbrains.kotlin.android' version '1.7.20' apply false } ext { diff --git a/demo-module/build.gradle b/demo-module/build.gradle index 0ea9969a..45f411af 100644 --- a/demo-module/build.gradle +++ b/demo-module/build.gradle @@ -1,7 +1,7 @@ plugins { id 'com.android.application' id 'org.jetbrains.kotlin.android' - id 'com.google.devtools.ksp' version '1.7.10-1.0.6' + id 'com.google.devtools.ksp' version '1.7.20-1.0.7' } android { diff --git a/yukihookapi-ksp-xposed/build.gradle b/yukihookapi-ksp-xposed/build.gradle index fe9de035..87cd887d 100644 --- a/yukihookapi-ksp-xposed/build.gradle +++ b/yukihookapi-ksp-xposed/build.gradle @@ -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' } diff --git a/yukihookapi/build.gradle b/yukihookapi/build.gradle index 7f41c149..4b62053f 100644 --- a/yukihookapi/build.gradle +++ b/yukihookapi/build.gradle @@ -48,7 +48,7 @@ dependencies { compileOnly 'de.robv.android.xposed:api:82' compileOnly project(':yukihookapi-stub') compileOnly fileTree(include: ['*.jar'], dir: 'libs') - implementation 'androidx.annotation:annotation:1.4.0' + implementation 'androidx.annotation:annotation:1.5.0' } group = rootProject.ext.groupId