整理项目

Signed-off-by: donghongyu <donghongyu@zhidaoauto.com>
This commit is contained in:
donghongyu
2022-01-18 18:11:28 +08:00
parent 3333d9ce83
commit 4cd2d5f8d8
6 changed files with 11 additions and 15 deletions

View File

@@ -640,7 +640,7 @@ class MoGoHmiFragment : MvpFragment<MoGoWarningContract.View?, WaringPresenter?>
* 显示转向灯效果 TODO
*/
override fun showTurnLight(light: Int) {
Logger.d("liyz", "hmiFragment showTurnLight --- light = $light")
//Logger.d("liyz", "hmiFragment showTurnLight --- light = $light")
// turnLightView?.visibility = View.VISIBLE
turnLightView.setTurnLight(light)
@@ -650,7 +650,7 @@ class MoGoHmiFragment : MvpFragment<MoGoWarningContract.View?, WaringPresenter?>
* 显示刹车效果
*/
override fun showBrakeLight(light: Int) {
Logger.d("liyz", "hmiFragment showBrakeLight --- light = $light")
//Logger.d("liyz", "hmiFragment showBrakeLight --- light = $light")
// brakeView?.visibility = View.VISIBLE
brakeView.setBrakeLight(light)

View File

@@ -68,7 +68,6 @@ dependencies {
api rootProject.ext.dependencies.mogocommons
api rootProject.ext.dependencies.modulecommon
api rootProject.ext.dependencies.mogoservice
//api rootProject.ext.dependencies.moduleV2x
api rootProject.ext.dependencies.moduleshare
api rootProject.ext.dependencies.moduleextensions
api rootProject.ext.dependencies.modulemap
@@ -101,7 +100,6 @@ dependencies {
api project(':foudations:mogo-commons')
api project(':modules:mogo-module-common')
api project(':modules:mogo-module-service')
//api project(':modules:mogo-module-v2x')
api project(':modules:mogo-module-share')
api project(':modules:mogo-module-extensions')
api project(':modules:mogo-module-map')

View File

@@ -63,21 +63,21 @@ SERVICE_CHAIN_VERSION=1.0.43
LOGLIB_VERSION=1.1.14
######## MogoAiCloudSDK Version ########
# 网络请求
MOGO_NETWORK_VERSION=1.3.16
MOGO_NETWORK_VERSION=1.3.17
# 鉴权
MOGO_PASSPORT_VERSION=1.3.16
MOGO_PASSPORT_VERSION=1.3.17
# 常链接
MOGO_SOCKET_VERSION=1.3.16
MOGO_SOCKET_VERSION=1.3.17
# 数据采集
MOGO_REALTIME_VERSION=1.3.16
MOGO_REALTIME_VERSION=1.3.17
# 探路,道路事件发布,获取
MOGO_TANLU_VERSION=1.3.16
MOGO_TANLU_VERSION=1.3.17
# 直播推流
MOGO_LIVE_VERSION=1.3.16
MOGO_LIVE_VERSION=1.3.17
# 直播拉流
MOGO_TRAFFICLIVE_VERSION=1.3.16
MOGO_TRAFFICLIVE_VERSION=1.3.17
# 定位服务
MOGO_LOCATION_VERSION=1.3.16
MOGO_LOCATION_VERSION=1.3.17
######## MogoAiCloudSDK Version ########
# 自研地图
MAP_SDK_VERSION=2.0.0.23

View File

@@ -35,7 +35,6 @@
:core:function-impl:mogo-core-function-smp
:modules:mogo-module-share
:modules:mogo-module-extensions
:modules:mogo-module-v2x
:modules:mogo-module-main
:modules:mogo-module-push-base
:modules:mogo-module-push

View File

@@ -69,7 +69,7 @@ public class OnAdasListenerAdapter implements OnAdasListener {
int turnLight = bean.getTurn_light(); //转向灯状态 0是正常 1是左转 2是右转
AmiClientManager.getInstance().setTurnLightState(turnLight);
int brakeLight = bean.getBrake_light(); //TODO
Logger.d(TAG, "onCarStateData ---- turnLight = " + turnLight + "---brakeLight = " + brakeLight);
//Logger.d(TAG, "onCarStateData ---- turnLight = " + turnLight + "---brakeLight = " + brakeLight);
//设置转向灯
CallerHmiManager.INSTANCE.showTurnLight(turnLight);

View File

@@ -64,7 +64,6 @@ include ':modules:mogo-module-main'
include ':modules:mogo-module-share'
include ':modules:mogo-module-service'
include ':modules:mogo-module-extensions'
//include ':modules:mogo-module-v2x'
include ':modules:mogo-module-push'
include ':modules:mogo-module-push-base'
include ':modules:mogo-module-carchatting'