Files
MoGoEagleEye/app/script/functions/och.gradle
yangyakun 8b66dfee89 [charter]
[3.2.0]
[引用修改]
2023-05-18 18:09:27 +08:00

72 lines
2.5 KiB
Groovy

apply from: "./script/utils.gradle"
// 网约车服务:仅小巴车、出租车渠道用
project.dependencies {
if (Boolean.valueOf(USE_MAVEN_PACKAGE)) {
fPadLenovoImplementation(rootProject.ext.dependencies.mogoochnoop)
// Bus司机端
// fMultiDisplayOchBusImplementation(rootProject.ext.dependencies.mogoochbus)
// // Bus乘客端
// fMultiDisplayOchBusImplementation(rootProject.ext.dependencies.mogoochbus)
//
// // taxi司机端
// fMultiDisplayOchTaxiImplementation(rootProject.ext.dependencies.mogoochtaxi)
// // taxi乘客端
// fMultiDisplayOchTaxiImplementation(rootProject.ext.dependencies.mogoochtaxi)
} else {
if (isCurrentDriver("noop")) {
fPadLenovoImplementation(project(':OCH:mogo-och-noop'))
}
if (isCurrentDriver("bus")) {
implementation project.project(':OCH:mogo-och-bus')
} else if (isCurrentPassenger("bus")) {
implementation project.project(':OCH:mogo-och-bus-passenger')
} else {
}
if (isCurrentDriver("charter")) {
implementation project.project(':OCH:mogo-och-charter')
} else if (isCurrentPassenger("charter")) {
implementation project.project(':OCH:mogo-och-charter-passenger')
} else {
}
if (isCurrentDriver("shuttle")) {
implementation project(':OCH:mogo-och-shuttle')
} else if (isCurrentPassenger("shuttle")) {
implementation project.project(':OCH:mogo-och-shuttle-passenger')
} else {
}
if (isCurrentFlavors("sweeper")) {
implementation project.project(':OCH:mogo-och-sweeper')
}
if (isCurrentDriver("taxi")) {
implementation project.project(':OCH:mogo-och-taxi')
} else if (isCurrentPassenger("taxi")) {
implementation project.project(':OCH:mogo-och-taxi-passenger')
} else {
}
// 多屏幕-Bus司机端
// fMultiDisplayOchBusImplementation (project(':OCH:mogo-och-bus'))
// // 多屏幕-Bus乘客端
// fMultiDisplayOchBusImplementation (project(':OCH:mogo-och-bus-passenger'))
//
// // taxi司机端
// fMultiDisplayOchTaxiImplementation (project(':OCH:mogo-och-taxi'))
// // 多屏幕-taxi乘客端
// fMultiDisplayOchTaxiImplementation (project(':OCH:mogo-och-taxi-passenger'))
//
// // 清扫车-多屏幕
// fMultiDisplaySweeperImplementation (project(':OCH:mogo-och-sweeper'))
}
}