From 022f5a5442c2e61d6fab5c10a1d8605733d194b9 Mon Sep 17 00:00:00 2001 From: fankesyooni Date: Mon, 2 Jan 2023 01:22:22 +0800 Subject: [PATCH] Update Gradle & Kotlin - Update Kotlin version to 1.7.22 - Update Gradle version to 7.6 - Update Gradle dependencies --- build.gradle | 2 +- demo-app/build.gradle | 6 +++--- demo-module/build.gradle | 8 ++++---- gradle/wrapper/gradle-wrapper.properties | 2 +- yukihookapi-ksp-xposed/build.gradle | 4 ++-- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/build.gradle b/build.gradle index adb36120..97d240ae 100644 --- a/build.gradle +++ b/build.gradle @@ -2,7 +2,7 @@ plugins { 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 + id 'org.jetbrains.kotlin.android' version '1.7.22' apply false } ext { diff --git a/demo-app/build.gradle b/demo-app/build.gradle index bdc854d1..9feb2841 100644 --- a/demo-app/build.gradle +++ b/demo-app/build.gradle @@ -50,9 +50,9 @@ dependencies { implementation 'androidx.core:core-ktx:1.9.0' implementation 'androidx.appcompat:appcompat:1.5.1' implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1' - implementation 'com.google.android.material:material:1.6.1' + implementation 'com.google.android.material:material:1.7.0' implementation 'androidx.constraintlayout:constraintlayout:2.1.4' testImplementation 'junit:junit:4.13.2' - androidTestImplementation 'androidx.test.ext:junit:1.1.3' - androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' + androidTestImplementation 'androidx.test.ext:junit:1.1.4' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.0' } \ No newline at end of file diff --git a/demo-module/build.gradle b/demo-module/build.gradle index 45f411af..771591c7 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.20-1.0.7' + id 'com.google.devtools.ksp' version '1.7.22-1.0.8' } android { @@ -64,9 +64,9 @@ dependencies { implementation 'androidx.core:core-ktx:1.9.0' implementation 'androidx.appcompat:appcompat:1.5.1' implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1' - implementation 'com.google.android.material:material:1.6.1' + implementation 'com.google.android.material:material:1.7.0' implementation 'androidx.constraintlayout:constraintlayout:2.1.4' testImplementation 'junit:junit:4.13.2' - androidTestImplementation 'androidx.test.ext:junit:1.1.3' - androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' + androidTestImplementation 'androidx.test.ext:junit:1.1.4' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.0' } \ No newline at end of file diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 181ea250..ebbfef88 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ #Sat Jan 29 22:55:22 CST 2022 distributionBase=GRADLE_USER_HOME -distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip distributionPath=wrapper/dists zipStorePath=wrapper/dists zipStoreBase=GRADLE_USER_HOME diff --git a/yukihookapi-ksp-xposed/build.gradle b/yukihookapi-ksp-xposed/build.gradle index 87cd887d..041ecf23 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.20-1.0.7' + id 'com.google.devtools.ksp' version '1.7.22-1.0.8' 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.20-1.0.7' + compileOnly 'com.google.devtools.ksp:symbol-processing-api:1.7.22-1.0.8' ksp 'dev.zacsweers.autoservice:auto-service-ksp:1.0.0' }