Files
MoGoEagleEye/app/functions/basedmap.gradle
2020-12-13 11:04:44 +08:00

35 lines
1.7 KiB
Groovy

// 辅助驾驶占位模块,目前部分车机不上辅助驾驶功能,使用该模块能力代替
project.dependencies {
if (Boolean.valueOf(RELEASE)) {
f8xxImplementation rootProject.ext.dependencies.mapcustom
f80xImplementation rootProject.ext.dependencies.mapcustom
f8AmapImplementation rootProject.ext.dependencies.mapamap
bydautoImplementation rootProject.ext.dependencies.mapamap
d82xImplementation rootProject.ext.dependencies.mapamap
em1Implementation rootProject.ext.dependencies.mapamap
em2Implementation rootProject.ext.dependencies.mapamap
d8xxImplementation rootProject.ext.dependencies.mapamap
d80xImplementation rootProject.ext.dependencies.mapamap
em4Implementation rootProject.ext.dependencies.mapamap
e8xxImplementation rootProject.ext.dependencies.mapamap
e8xxImplementation rootProject.ext.dependencies.mapamap
em3Implementation rootProject.ext.dependencies.mapamap
} else {
f8xxImplementation project(':libraries:map-custom')
f80xImplementation project(':libraries:map-custom')
f8AmapImplementation project(':libraries:map-amap')
bydautoImplementation project(':libraries:map-amap')
d82xImplementation project(':libraries:map-amap')
em1Implementation project(':libraries:map-amap')
em2Implementation project(':libraries:map-amap')
d8xxImplementation project(':libraries:map-amap')
d80xImplementation project(':libraries:map-amap')
em4Implementation project(':libraries:map-amap')
e8xxImplementation project(':libraries:map-amap')
em3Implementation project(':libraries:map-amap')
}
}