diff --git a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/MoGoHmiFragment.kt b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/MoGoHmiFragment.kt index 1747a9384b..4dbd81db85 100644 --- a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/MoGoHmiFragment.kt +++ b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/MoGoHmiFragment.kt @@ -640,7 +640,7 @@ class MoGoHmiFragment : MvpFragment * 显示转向灯效果 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 * 显示刹车效果 */ 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) diff --git a/core/function-impl/mogo-core-function-main/build.gradle b/core/function-impl/mogo-core-function-main/build.gradle index 50ede9d43f..271fc0660b 100644 --- a/core/function-impl/mogo-core-function-main/build.gradle +++ b/core/function-impl/mogo-core-function-main/build.gradle @@ -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') diff --git a/gradle.properties b/gradle.properties index f0c6ef8bd6..8c721eea63 100644 --- a/gradle.properties +++ b/gradle.properties @@ -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 diff --git a/modules.txt b/modules.txt index 5c6cf89911..ba44a97da5 100644 --- a/modules.txt +++ b/modules.txt @@ -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 diff --git a/modules/mogo-module-adas/src/main/java/com/mogo/module/adas/OnAdasListenerAdapter.java b/modules/mogo-module-adas/src/main/java/com/mogo/module/adas/OnAdasListenerAdapter.java index 83a7f3f4d7..98f67a6b5c 100644 --- a/modules/mogo-module-adas/src/main/java/com/mogo/module/adas/OnAdasListenerAdapter.java +++ b/modules/mogo-module-adas/src/main/java/com/mogo/module/adas/OnAdasListenerAdapter.java @@ -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); diff --git a/settings.gradle b/settings.gradle index 95dbdd77e1..2d9d6f9f71 100644 --- a/settings.gradle +++ b/settings.gradle @@ -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'