61 lines
2.8 KiB
Groovy
61 lines
2.8 KiB
Groovy
project.dependencies {
|
|
if (Boolean.valueOf(RELEASE)) {
|
|
bydautoImplementation rootProject.ext.dependencies.skinsupportnoop
|
|
phoneImplementation rootProject.ext.dependencies.skinsupportimpl
|
|
|
|
f8xxImplementation rootProject.ext.dependencies.skinsupportimpl
|
|
f80xImplementation rootProject.ext.dependencies.skinsupportimpl
|
|
f8AmapImplementation rootProject.ext.dependencies.skinsupportimpl
|
|
|
|
fochtaxiImplementation rootProject.ext.dependencies.skinsupportimpl
|
|
fochbusImplementation rootProject.ext.dependencies.skinsupportimpl
|
|
|
|
fPadLenovoImplementation rootProject.ext.dependencies.skinsupportimpl
|
|
fPadLenovoOchTaxiImplementation rootProject.ext.dependencies.skinsupportimpl
|
|
fPadLenovoOchBusImplementation rootProject.ext.dependencies.skinsupportimpl
|
|
|
|
|
|
phoneImplementation rootProject.ext.dependencies.skinsupportlight
|
|
|
|
f8xxImplementation rootProject.ext.dependencies.skinsupportlight
|
|
f80xImplementation rootProject.ext.dependencies.skinsupportlight
|
|
f8AmapImplementation rootProject.ext.dependencies.skinsupportlight
|
|
|
|
fochtaxiImplementation rootProject.ext.dependencies.skinsupportlight
|
|
fochbusImplementation rootProject.ext.dependencies.skinsupportlight
|
|
|
|
fPadLenovoImplementation rootProject.ext.dependencies.skinsupportlight
|
|
fPadLenovoOchTaxiImplementation rootProject.ext.dependencies.skinsupportlight
|
|
fPadLenovoOchBusImplementation rootProject.ext.dependencies.skinsupportlight
|
|
} else {
|
|
|
|
bydautoImplementation project(':skin:mogo-skin-support-noop')
|
|
phoneImplementation project(':skin:mogo-skin-support-impl')
|
|
|
|
f8xxImplementation project(':skin:mogo-skin-support-impl')
|
|
f80xImplementation project(':skin:mogo-skin-support-impl')
|
|
f8AmapImplementation project(':skin:mogo-skin-support-impl')
|
|
|
|
fochtaxiImplementation project(':skin:mogo-skin-support-impl')
|
|
fochbusImplementation project(':skin:mogo-skin-support-impl')
|
|
|
|
fPadLenovoImplementation project(':skin:mogo-skin-support-impl')
|
|
fPadLenovoOchTaxiImplementation project(':skin:mogo-skin-support-impl')
|
|
fPadLenovoOchBusImplementation project(':skin:mogo-skin-support-impl')
|
|
|
|
|
|
phoneImplementation project(':skin:mogo-skin-light')
|
|
|
|
f8xxImplementation project(':skin:mogo-skin-light')
|
|
f80xImplementation project(':skin:mogo-skin-light')
|
|
f8AmapImplementation project(':skin:mogo-skin-light')
|
|
|
|
fochtaxiImplementation project(':skin:mogo-skin-light')
|
|
fochbusImplementation project(':skin:mogo-skin-light')
|
|
|
|
fPadLenovoImplementation project(':skin:mogo-skin-light')
|
|
fPadLenovoOchTaxiImplementation project(':skin:mogo-skin-light')
|
|
fPadLenovoOchBusImplementation project(':skin:mogo-skin-light')
|
|
|
|
}
|
|
} |