11 lines
213 B
Groovy
11 lines
213 B
Groovy
![]() |
/*
|
|||
|
* 文件说明:业务module的标准配置(非base模块外的业务模块)
|
|||
|
*/
|
|||
|
apply from: "./module_base.gradle"
|
|||
|
|
|||
|
dependencies {
|
|||
|
// Base
|
|||
|
implementation project(path: ":modules:module_base")
|
|||
|
}
|
|||
|
|