修改AndroidManifest.xml中的包名

Signed-off-by: 董宏宇 <martindhy@gmail.com>
This commit is contained in:
董宏宇
2021-09-26 14:42:22 +08:00
parent dd4603c584
commit aa01a90a6a
6 changed files with 19 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mogo.eagle.core.function.hmi">
package="com.mogo.eagle.core.function.autopilot">
</manifest>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mogo.eagle.core.function.hmi">
package="com.mogo.eagle.core.function.notice">
</manifest>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mogo.mogo.module.data">
package="com.mogo.eagle.core.data">
</manifest>

View File

@@ -1,6 +1,6 @@
package com.mogo.eagle.core.data.enums
import com.mogo.mogo.module.data.R
import com.mogo.eagle.core.data.R
/**

View File

@@ -11,6 +11,8 @@ check--车辆检测相关
dispatch--车辆调度相关
hmi--UI这里承载的是所有鹰眼的UI展示
map--地图相关
hd--高精地图
smp--小地图
notice--公告
obu--OBU预警逻辑相关
tts--语音播报&语音交互相关

View File

@@ -1,10 +1,22 @@
package com.mogo.eagle.core.function.api.autopilot;
import com.mogo.eagle.core.data.traffic.TrafficData;
import java.util.List;
/**
* @author xiaoyuzhou
* @date 2021/9/23 11:23 上午
* 自动驾驶识别监听
* 自动驾驶识别数据监听,回调后做数据可视化呈现
*/
public interface IMoGoAutoPilotIdentifyListener {
/**
* 识别交通元素数据发生更新
*
* @param trafficData 交通元素信息列表
*/
void onIdentifyDataUpdate(List<TrafficData> trafficData);
}