Update Gradle & Kotlin

- Update Kotlin version to 1.8.20
- Update Gradle version to 8.0.2
- Update Gradle dependencies
This commit is contained in:
2023-04-08 00:46:35 +08:00
parent 792ec98a91
commit e610fd74e3
4 changed files with 9 additions and 9 deletions

View File

@@ -1,9 +1,9 @@
//file:noinspection unused //file:noinspection unused
plugins { plugins {
id 'com.android.application' version '7.4.0' apply false id 'com.android.application' version '7.4.1' apply false
id 'com.android.library' version '7.4.0' apply false id 'com.android.library' version '7.4.1' apply false
id 'org.jetbrains.kotlin.android' version '1.7.22' apply false id 'org.jetbrains.kotlin.android' version '1.8.20' apply false
id 'org.jetbrains.kotlin.jvm' version '1.7.22' apply false id 'org.jetbrains.kotlin.jvm' version '1.8.20' apply false
} }
ext { ext {

View File

@@ -45,9 +45,9 @@ android {
dependencies { dependencies {
implementation project(':yukireflection') implementation project(':yukireflection')
implementation 'androidx.core:core-ktx:1.9.0' implementation 'androidx.core:core-ktx:1.10.0'
implementation 'androidx.appcompat:appcompat:1.6.0' implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.7.0' implementation 'com.google.android.material:material:1.8.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4' implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
testImplementation 'junit:junit:4.13.2' testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5' androidTestImplementation 'androidx.test.ext:junit:1.1.5'

View File

@@ -1,6 +1,6 @@
#Sat Jan 21 10:47:38 CST 2023 #Sat Jan 21 10:47:38 CST 2023
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-bin.zip
distributionPath=wrapper/dists distributionPath=wrapper/dists
zipStorePath=wrapper/dists zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME

View File

@@ -37,7 +37,7 @@ tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).configureEach {
dependencies { dependencies {
compileOnly fileTree(include: ['*.jar'], dir: 'libs') compileOnly fileTree(include: ['*.jar'], dir: 'libs')
implementation 'androidx.annotation:annotation:1.5.0' implementation 'androidx.annotation:annotation:1.6.0'
} }
group = rootProject.ext.groupId group = rootProject.ext.groupId