Chill_Screen/build.gradle.kts
2025-07-21 17:20:25 +08:00

14 lines
439 B
Plaintext
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.

// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
alias(libs.plugins.android.application) apply false
alias(libs.plugins.kotlin.android) apply false
}
buildscript {
repositories {
google()
mavenCentral() // 必须添加ObjectBox 依赖从这里下载
}
dependencies {
classpath("io.objectbox:objectbox-gradle-plugin:4.1.0")
}
}