调整Gradle依赖关系

This commit is contained in:
董宏宇
2021-08-25 11:09:54 +08:00
parent 60110ffd2a
commit 152c916a8e
15 changed files with 387 additions and 336 deletions

View File

@@ -0,0 +1,16 @@
package com.mogo.commons;
/**
* @author xiaoyuzhou
* @date 2021/8/24 8:59 下午
* 功能构建配置文件,根据 APP 中build.gradle productFlavors 配置的不同将直接影响加载的功能的不同
*/
public class FunctionBuildConfig {
// 地图是否绘制Adas识别回调的Marker
public boolean isShowAdasMarker = true;
// 自车位置使用哪种外部数据源,0-Android系统1-工控机2-OBU
public int gpsProvider = 0;
}