增加vip变灯提醒类型

This commit is contained in:
tongchenfei
2020-06-29 09:52:21 +08:00
parent f8e084334b
commit 4ff3c0e2cc
3 changed files with 7 additions and 1 deletions

View File

@@ -43,6 +43,7 @@ public class MogoApplication extends AbsMogoApplication {
DebugConfig.setLaunchLocationService(BuildConfig.LAUNCH_LOCATION_SERVICE);
DebugConfig.setUseCustomNavi(BuildConfig.USE_CUSTOM_NAVI);
DebugConfig.setLauncher(BuildConfig.IS_LAUNCHER);
DebugConfig.setUseMockObuData(false);
super.onCreate();
// Crash 日志收集
final long start = System.currentTimeMillis();

View File

@@ -24,7 +24,7 @@ SNAPSHOT_REPOSITORY_URL=http://nexus.zhidaoauto.com/repository/maven-snapshots/
USERNAME=xintai
PASSWORD=xintai2018
# 编译模式: false - 依赖本地版本, true - 依赖 maven 版本
RELEASE=true
RELEASE=false
# 模块版本
## 工程内模块
MOGO_COMMONS_VERSION=1.2.1.12-shunyi

View File

@@ -30,4 +30,9 @@ public class ObuConstant {
* 行人碰撞预警
*/
public static final int TYPE_ROAD_USER_COLLISION_WARNING = 115;
/**
* 为vip车辆变灯提醒
*/
public static final int TYPE_CHANGE_LIGHT_FOR_VIP = 116;
}