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