1. 优化 build.gradle 文件

This commit is contained in:
wangcongtao
2020-08-17 16:49:32 +08:00
parent cffab6a34b
commit 7d6fe9feef
2 changed files with 12 additions and 4 deletions

View File

@@ -0,0 +1,11 @@
// 表现:独立 app 和 launcher
project.dependencies {
if (Boolean.valueOf(RELEASE)) {
launcherImplementation rootProject.ext.dependencies.modulemainlauncher
independentImplementation rootProject.ext.dependencies.modulemainindependent
} else {
launcherImplementation project(':main-extensions:mogo-module-main-launcher')
independentImplementation project(':main-extensions:mogo-module-main-independent')
}
}