2024-09-17 09:24:50 +08:00
|
|
|
plugins {
|
|
|
|
|
alias(libs.plugins.android.application).apply(false)
|
|
|
|
|
alias(libs.plugins.kotlin.android).apply(false)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
|
repositories {
|
|
|
|
|
google()
|
|
|
|
|
mavenCentral()
|
|
|
|
|
}
|
|
|
|
|
dependencies {
|
2024-09-28 22:28:22 +08:00
|
|
|
classpath(libs.gradle) // 确保这里的版本号是最新的
|
|
|
|
|
classpath(libs.kotlin.gradle.plugin) // 确保这里的版本号是最新的
|
|
|
|
|
classpath(libs.gson) // 使用 classpath 而不是 implementation
|
2024-09-17 09:24:50 +08:00
|
|
|
}
|
|
|
|
|
}
|