Change the AGP version to the highest version supported by the IDE

This commit is contained in:
Ash 2023-02-24 13:11:10 +08:00
parent 7a606d4ca0
commit e6b97b5af9
1 changed files with 3 additions and 3 deletions

View File

@ -42,11 +42,11 @@ buildscript {
}
plugins {
id 'com.android.application' version '7.4.1' apply false
id 'com.android.library' version '7.4.1' apply false
id 'com.android.application' version '7.4.0-beta02' apply false
id 'com.android.library' version '7.4.0-beta02' apply false
id 'org.jetbrains.kotlin.android' version '1.6.21' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}
}