添加独立app保活

This commit is contained in:
tongchenfei
2020-06-12 10:58:55 +08:00
parent 62fa5aea0f
commit 10b1916b8d
7 changed files with 37 additions and 12 deletions

View File

@@ -41,9 +41,9 @@ dependencies {
implementation rootProject.ext.dependencies.arouter
annotationProcessor rootProject.ext.dependencies.aroutercompiler
if (Boolean.valueOf(RELEASE)) {
implementation rootProject.ext.dependencies.modulemain
api rootProject.ext.dependencies.modulemain
} else {
implementation project(":modules:mogo-module-main")
api project(":modules:mogo-module-main")
}
}

View File

@@ -41,10 +41,10 @@ dependencies {
implementation rootProject.ext.dependencies.arouter
annotationProcessor rootProject.ext.dependencies.aroutercompiler
if (Boolean.valueOf(RELEASE)) {
implementation rootProject.ext.dependencies.modulemain
api rootProject.ext.dependencies.modulemain
api rootProject.ext.dependencies.moduleapps
} else {
implementation project(":modules:mogo-module-main")
api project(":modules:mogo-module-main")
api project(':modules:mogo-module-apps')
}
}