Files
Eta_change/build.gradle.kts
DelLevin-Home 83aa139ea7
Some checks failed
Eta Build / 构建 Debug APK (push) Has been cancelled
改成国内镜像
2026-08-18 21:50:33 +08:00

19 lines
684 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 {
maven(url = "https://maven.aliyun.com/repository/google")
maven(url = "https://maven.aliyun.com/repository/public")
}
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
}