From 5d35caa1d4ebc4b65d17ff0e76be2f8537293a1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=91=A3=E5=AE=8F=E5=AE=87?= Date: Thu, 16 Sep 2021 20:46:20 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A7=A3=E5=86=B3=E4=BE=9D=E8=B5=96=E5=85=B3?= =?UTF-8?q?=E7=B3=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 董宏宇 --- .idea/runConfigurations.xml | 12 ------------ modules/mogo-module-hmi/build.gradle | 10 ---------- .../com/mogo/module/hmi/ui/widget/SpeedPanelView.kt | 3 +-- 3 files changed, 1 insertion(+), 24 deletions(-) delete mode 100644 .idea/runConfigurations.xml diff --git a/.idea/runConfigurations.xml b/.idea/runConfigurations.xml deleted file mode 100644 index 7f68460d8b..0000000000 --- a/.idea/runConfigurations.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/modules/mogo-module-hmi/build.gradle b/modules/mogo-module-hmi/build.gradle index 4e986bb9d9..eedef2748e 100644 --- a/modules/mogo-module-hmi/build.gradle +++ b/modules/mogo-module-hmi/build.gradle @@ -52,22 +52,12 @@ dependencies { kapt rootProject.ext.dependencies.aroutercompiler if (Boolean.valueOf(RELEASE)) { - api rootProject.ext.dependencies.mogomap - api rootProject.ext.dependencies.mogomapapi - api rootProject.ext.dependencies.mogoutils - api rootProject.ext.dependencies.mogocommons api rootProject.ext.dependencies.mogoserviceapi implementation rootProject.ext.dependencies.modulecommon - implementation rootProject.ext.dependencies.moduleservice implementation rootProject.ext.dependencies.moduledata } else { - api project(":libraries:mogo-map") - api project(":libraries:mogo-map-api") - api project(":foudations:mogo-utils") - api project(":foudations:mogo-commons") api project(':services:mogo-service-api') implementation project(':modules:mogo-module-common') - implementation project(':modules:mogo-module-service') implementation project(':core:mogo-core-data') } diff --git a/modules/mogo-module-hmi/src/main/java/com/mogo/module/hmi/ui/widget/SpeedPanelView.kt b/modules/mogo-module-hmi/src/main/java/com/mogo/module/hmi/ui/widget/SpeedPanelView.kt index 96b0d16693..518b9bd47a 100644 --- a/modules/mogo-module-hmi/src/main/java/com/mogo/module/hmi/ui/widget/SpeedPanelView.kt +++ b/modules/mogo-module-hmi/src/main/java/com/mogo/module/hmi/ui/widget/SpeedPanelView.kt @@ -15,7 +15,6 @@ import com.mogo.map.MogoLatLng import com.mogo.map.navi.IMogoCarLocationChangedListener2 import com.mogo.module.common.MogoApisHandler import com.mogo.module.hmi.R -import com.mogo.module.service.receiver.MogoReceiver import com.mogo.service.IMogoServiceApis import com.mogo.service.MogoServicePaths import com.mogo.service.statusmanager.IMogoStatusChangedListener @@ -60,7 +59,7 @@ class SpeedPanelView @JvmOverloads constructor( val intent = Intent() intent.putExtra("oper", 52) MogoApisHandler.getInstance().apis.intentManagerApi - .invoke(MogoReceiver.ACTION_MOCK, intent) + .invoke("com.mogo.mock", intent) true } }