Initial commit

This commit is contained in:
2023-09-03 01:11:35 +08:00
commit 416f05460e
164 changed files with 12089 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
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")