Files
MoGoEagleEye/app/functions/perform.gradle
wangcongtao 307858f9aa 1. 解决部分模块耦合问题
2. 重新规划模块依赖关系
3. 解决主页左侧遮罩颜色问题
2020-11-11 16:57:20 +08:00

17 lines
685 B
Groovy

// 表现:独立 app 和 launcher
project.dependencies {
if (Boolean.valueOf(RELEASE)) {
launcherImplementation rootProject.ext.dependencies.modulemainlauncher
independentImplementation rootProject.ext.dependencies.modulemainindependent
// 仅launcher需要引入该模块
launcherImplementation rootProject.ext.dependencies.moduleapps
} else {
launcherImplementation project(':main-extensions:mogo-module-main-launcher')
independentImplementation project(':main-extensions:mogo-module-main-independent')
// 仅launcher需要引入该模块
launcherImplementation project(':modules:mogo-module-apps')
}
}