26 lines
1.2 KiB
Groovy
26 lines
1.2 KiB
Groovy
// 网约车服务:仅小巴车、出租车渠道用
|
|
project.dependencies {
|
|
if (Boolean.valueOf(RELEASE)) {
|
|
f8xxImplementation rootProject.ext.dependencies.mogoochnoop
|
|
f80xImplementation rootProject.ext.dependencies.mogoochnoop
|
|
f8AmapImplementation rootProject.ext.dependencies.mogoochnoop
|
|
|
|
fochtaxiImplementation rootProject.ext.dependencies.mogoochtaxi
|
|
fochbusImplementation rootProject.ext.dependencies.mogoochbus
|
|
|
|
fPadLenovoImplementation rootProject.ext.dependencies.mogoochnoop
|
|
fPadLenovoOchTaxiImplementation rootProject.ext.dependencies.mogoochtaxi
|
|
fPadLenovoOchBusImplementation rootProject.ext.dependencies.mogoochbus
|
|
} else {
|
|
f8xxImplementation project(':OCH:mogo-och-noop')
|
|
f80xImplementation project(':OCH:mogo-och-noop')
|
|
f8AmapImplementation project(':OCH:mogo-och-noop')
|
|
|
|
fochtaxiImplementation project(':OCH:mogo-och-taxi')
|
|
fochbusImplementation project(':OCH:mogo-och-bus')
|
|
|
|
fPadLenovoImplementation project(':OCH:mogo-och-noop')
|
|
fPadLenovoOchTaxiImplementation project(':OCH:mogo-och-taxi')
|
|
fPadLenovoOchBusImplementation project(':OCH:mogo-och-bus')
|
|
}
|
|
} |