Files
MoGoEagleEye/foudations/mogo-commons/src/main/java/com/mogo/commons/FunctionBuildConfig.java
2021-08-25 12:53:50 +08:00

17 lines
481 B
Java
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package com.mogo.commons;
/**
* @author xiaoyuzhou
* @date 2021/8/24 8:59 下午
* 功能构建配置文件,根据 APP 中build.gradle productFlavors 配置的不同将直接影响加载的功能的不同
*/
public class FunctionBuildConfig {
// 地图是否绘制Adas识别回调的Marker
public static boolean isShowAdasMarker = true;
// 自车位置使用哪种外部数据源,0-Android系统1-工控机2-OBU
public static int gpsProvider = 0;
}