Files
Eta_change/build.gradle.kts
DelLevin-Home 2f7afeb4fa 首次提交
2026-08-15 15:54:12 +08:00

19 lines
592 B
Kotlin
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
// AGP 9 内置 KGP 2.2.10,但 miuix 0.9.3 与 Compose Multiplatform 1.11.1 需要 Kotlin 2.4.0
// 这里用 buildscript classpath 强制提升 KGP 版本以覆盖内置版本。
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:2.4.0")
}
}
plugins {
alias(libs.plugins.android.application) apply false
alias(libs.plugins.kotlin.compose) apply false
alias(libs.plugins.kotlin.serialization) apply false
alias(libs.plugins.ksp) apply false
}