mirror of
https://github.com/HighCapable/SweetDependency.git
synced 2025-09-04 01:35:46 +08:00
20 lines
520 B
Plaintext
20 lines
520 B
Plaintext
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
plugins {
|
|
// Import the SweetDependency plugin here
|
|
// 在这里引入 SweetDependency 插件
|
|
id("com.highcapable.sweetdependency") version "1.0.0"
|
|
}
|
|
sweetDependency {
|
|
configFileName = "sweet-dependency-config.yaml"
|
|
isEnableDependenciesAutowireLog = true
|
|
isEnableVerboseMode = true
|
|
}
|
|
rootProject.name = "SweetDependency-Sample-Android"
|
|
include(":demo-app")
|
|
include(":demo-library") |