14 lines
439 B
Plaintext
14 lines
439 B
Plaintext
// 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")
|
||
}
|
||
} |