1
.idea/misc.xml
generated
1
.idea/misc.xml
generated
@@ -13,6 +13,7 @@
|
|||||||
<map>
|
<map>
|
||||||
<entry key="../../../../../../layout/custom_preview.xml" value="0.390625" />
|
<entry key="../../../../../../layout/custom_preview.xml" value="0.390625" />
|
||||||
<entry key="../../../../../layout/custom_preview.xml" value="0.19947916666666668" />
|
<entry key="../../../../../layout/custom_preview.xml" value="0.19947916666666668" />
|
||||||
|
<entry key="OCH/mogo-och-bus/src/main/res/layout/item_och_bus_station.xml" value="0.3385416666666667" />
|
||||||
<entry key="OCH/mogo-och/src/main/res/layout/module_mogo_och_base_fragment.xml" value="0.24010416666666667" />
|
<entry key="OCH/mogo-och/src/main/res/layout/module_mogo_och_base_fragment.xml" value="0.24010416666666667" />
|
||||||
<entry key="core/function-impl/mogo-core-function-hmi/src/main/res/layout/fragment_hmi.xml" value="1.0" />
|
<entry key="core/function-impl/mogo-core-function-hmi/src/main/res/layout/fragment_hmi.xml" value="1.0" />
|
||||||
<entry key="core/function-impl/mogo-core-function-hmi/src/main/res/layout/view_autopilot_status.xml" value="0.25833333333333336" />
|
<entry key="core/function-impl/mogo-core-function-hmi/src/main/res/layout/view_autopilot_status.xml" value="0.25833333333333336" />
|
||||||
|
|||||||
15
README.md
15
README.md
@@ -8,17 +8,6 @@ repositories {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// SDK 功能说明
|
|
||||||
MOGO_CORE_SDK_VERSION = 0.0.6
|
|
||||||
|
|
||||||
// 负责模块之间调用,回调监听注册
|
|
||||||
com.mogo.eagle.core.function:call:${MOGO_CORE_SDK_VERSION}
|
|
||||||
// 数据bean基础,用来统一模块间数据调用
|
|
||||||
com.mogo.eagle.core:data:${MOGO_CORE_SDK_VERSION}
|
|
||||||
// 模块功能定义接口,回调监听接口定义
|
|
||||||
com.mogo.eagle.core.function:api:${MOGO_CORE_SDK_VERSION}
|
|
||||||
|
|
||||||
|
|
||||||
// app 壳项目依赖
|
// app 壳项目依赖
|
||||||
参见项目
|
参见项目
|
||||||
|
|
||||||
@@ -52,10 +41,6 @@ implementation "com.mogo.eagle.core.function:call:0.0.6"
|
|||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
```gradle
|
|
||||||
// 新架构 模块间调用依赖
|
|
||||||
implementation "com.mogo.eagle.core.function:call:0.0.4"
|
|
||||||
```
|
|
||||||
|
|
||||||
### 状态监听
|
### 状态监听
|
||||||
#### 自动驾驶状态监听
|
#### 自动驾驶状态监听
|
||||||
|
|||||||
105
README_VersionHistory.md
Normal file
105
README_VersionHistory.md
Normal file
@@ -0,0 +1,105 @@
|
|||||||
|
### 鹰眼 (MOGO-Autopilot) 平台接入说明
|
||||||
|
```gradle
|
||||||
|
// 新版本架构SDK
|
||||||
|
MOGO_CORE_SDK_VERSION = 0.0.6
|
||||||
|
|
||||||
|
// 所有UI展示层
|
||||||
|
com.mogo.eagle.core.function.impl:hmi:${MOGO_CORE_SDK_VERSION}
|
||||||
|
// 自动驾驶/工控机相关的功能实现
|
||||||
|
com.mogo.eagle.core.function.impl:autopilot:${MOGO_CORE_SDK_VERSION}
|
||||||
|
// 车辆检测模块功能实现
|
||||||
|
com.mogo.eagle.core.function.impl:check:${MOGO_CORE_SDK_VERSION}
|
||||||
|
// 地图层
|
||||||
|
com.mogo.eagle.core.function.impl:map:${MOGO_CORE_SDK_VERSION}
|
||||||
|
// 超视距服务
|
||||||
|
com.mogo.eagle.core.function.impl:monitoring:${MOGO_CORE_SDK_VERSION}
|
||||||
|
// 推送通知服务
|
||||||
|
com.mogo.eagle.core.function.impl:notice:${MOGO_CORE_SDK_VERSION}
|
||||||
|
// 自研OBU功能服务
|
||||||
|
com.mogo.eagle.core.function.impl:obu-mogo:${MOGO_CORE_SDK_VERSION}
|
||||||
|
// 小地图功能实现
|
||||||
|
com.mogo.eagle.core.function.impl:smp:${MOGO_CORE_SDK_VERSION}
|
||||||
|
// 道路协同功能实现
|
||||||
|
com.mogo.eagle.core.function.impl:v2x:${MOGO_CORE_SDK_VERSION}
|
||||||
|
// 模块功能定义接口,回调监听接口定义
|
||||||
|
com.mogo.eagle.core.function:api:${MOGO_CORE_SDK_VERSION}
|
||||||
|
// 负责模块之间调用,回调监听注册
|
||||||
|
com.mogo.eagle.core.function:call:${MOGO_CORE_SDK_VERSION}
|
||||||
|
// 数据bean基础,用来统一模块间数据调用
|
||||||
|
com.mogo.eagle.core:data:${MOGO_CORE_SDK_VERSION}
|
||||||
|
// 项目公用资源
|
||||||
|
com.mogo.eagle.core:res:${MOGO_CORE_SDK_VERSION}
|
||||||
|
// 项目工具类
|
||||||
|
com.mogo.eagle.core:utils:${MOGO_CORE_SDK_VERSION}
|
||||||
|
// 网络服务
|
||||||
|
com.mogo.eagle.core:network:${MOGO_CORE_SDK_VERSION}
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
```gradle
|
||||||
|
MOGO_COMMONS_VERSION = 2.0.63
|
||||||
|
tanluupload : "com.mogo.module:module-tanlu-upload:${MOGO_COMMONS_VERSION}",
|
||||||
|
// modules
|
||||||
|
moduleshare : "com.mogo.module:module-share:${MOGO_COMMONS_VERSION}",
|
||||||
|
mogocommons : "com.mogo.commons:mogo-commons:${MOGO_COMMONS_VERSION}",
|
||||||
|
mogoutils : "com.mogo.commons:mogo-utils:${MOGO_COMMONS_VERSION}",
|
||||||
|
mapamap : "com.mogo.map:map-amap:${MOGO_COMMONS_VERSION}",
|
||||||
|
mapautomap : "com.mogo.map:map-autonavi:${MOGO_COMMONS_VERSION}",
|
||||||
|
mapcustom : "com.mogo.map:map-custom:${MOGO_COMMONS_VERSION}",
|
||||||
|
mogomap : "com.mogo.map:mogo-map:${MOGO_COMMONS_VERSION}",
|
||||||
|
mogomapapi : "com.mogo.map:mogo-map-api:${MOGO_COMMONS_VERSION}",
|
||||||
|
mogocustommap : "com.zhidaoauto.machine:map:${MOGO_COMMONS_VERSION}",
|
||||||
|
|
||||||
|
modulecommon : "com.mogo.module:module-common:${MOGO_COMMONS_VERSION}",
|
||||||
|
modulemain : "com.mogo.module:module-main:${MOGO_COMMONS_VERSION}",
|
||||||
|
modulemainlauncher : "com.mogo.module:module-main-launcher:${MOGO_COMMONS_VERSION}",
|
||||||
|
modulemap : "com.mogo.module:module-map:${MOGO_COMMONS_VERSION}",
|
||||||
|
moduleservice : "com.mogo.module:module-service:${MOGO_COMMONS_VERSION}",
|
||||||
|
mogoservice : "com.mogo.service:mogo-service:${MOGO_COMMONS_VERSION}",
|
||||||
|
mogoserviceapi : "com.mogo.service:mogo-service-api:${MOGO_COMMONS_VERSION}",
|
||||||
|
moduleapps : "com.mogo.module:module-apps:${MOGO_COMMONS_VERSION}",
|
||||||
|
moduleextensions : "com.mogo.module:module-extensions:${MOGO_COMMONS_VERSION}",
|
||||||
|
chat : "com.mogo.module.carchatout:module-chat:${MOGO_COMMONS_VERSION}",
|
||||||
|
callchat : "com.mogo.module.carchatout:module-carchatting:${MOGO_COMMONS_VERSION}",
|
||||||
|
callchatprovider : "com.mogo.module.carchatout:module-carchatting-provider:${MOGO_COMMONS_VERSION}",
|
||||||
|
|
||||||
|
// V2X
|
||||||
|
moduleV2x : "com.mogo.module:module-v2x:${MOGO_COMMONS_VERSION}",
|
||||||
|
moduleADAS : "com.mogo.module:mogo-module-adas:${MOGO_COMMONS_VERSION}",
|
||||||
|
modulesearch : "com.mogo.module:module-search:${MOGO_COMMONS_VERSION}",
|
||||||
|
// push
|
||||||
|
modulepush : "com.mogo.module:module-push:${MOGO_COMMONS_VERSION}",
|
||||||
|
modulepushbase : "com.mogo.module:module-push-base:${MOGO_COMMONS_VERSION}",
|
||||||
|
modulepushnoop : "com.mogo.module:module-push-noop:${MOGO_COMMONS_VERSION}",
|
||||||
|
//统一返回键
|
||||||
|
mogomoduleback : "com.mogo.module:module-back:${MOGO_COMMONS_VERSION}",
|
||||||
|
// OBU
|
||||||
|
moduleobu : "com.mogo.module:module-obu:${MOGO_COMMONS_VERSION}",
|
||||||
|
// 左侧面板
|
||||||
|
moduleleftpanel : "com.mogo.module:module-left-panel:${MOGO_COMMONS_VERSION}",
|
||||||
|
// 左侧面板空实现
|
||||||
|
moduleleftpanelnoop : "com.mogo.module:module-left-panel-noop:${MOGO_COMMONS_VERSION}",
|
||||||
|
// 基础服务实现
|
||||||
|
mogobaseservicesdk : "com.mogo.base:services-sdk:${MOGO_COMMONS_VERSION}",
|
||||||
|
mogobaseserviceapk : "com.mogo.base:services-apk:${MOGO_COMMONS_VERSION}",
|
||||||
|
mogobasewebsocketsdk : "com.mogo.base:websocket-sdk:${MOGO_COMMONS_VERSION}",
|
||||||
|
mogowebsocket : "com.mogo.module.carchatting:module-carchatt-socket:${MOGO_COMMONS_VERSION}",
|
||||||
|
mogologlib : "com.mogo.module:module-loglib:${MOGO_COMMONS_VERSION}",
|
||||||
|
mogomonitor : "com.mogo.module:module-monitor:${MOGO_COMMONS_VERSION}",
|
||||||
|
mogomodulewidgets : "com.mogo.module:module-widgets:${MOGO_COMMONS_VERSION}",
|
||||||
|
kotlingradleplugin : "org.jetbrains.kotlin:kotlin-gradle-plugin:${MOGO_COMMONS_VERSION}",
|
||||||
|
skinsupport : "com.mogo.skin:skin-support:${MOGO_COMMONS_VERSION}",
|
||||||
|
skinsupportimpl : "com.mogo.skin:skin-support-impl:${MOGO_COMMONS_VERSION}",
|
||||||
|
skinsupportnoop : "com.mogo.skin:skin-support-noop:${MOGO_COMMONS_VERSION}",
|
||||||
|
skinsupportlight : "com.mogo.skin:skin-light:${MOGO_COMMONS_VERSION}",
|
||||||
|
crashreport : "com.mogo.test:crashreport:${MOGO_COMMONS_VERSION}",
|
||||||
|
crashreportbugly : "com.mogo.test:crashreport-bugly:${MOGO_COMMONS_VERSION}",
|
||||||
|
crashreportnoop : "com.mogo.test:crashreport-noop:${MOGO_COMMONS_VERSION}",
|
||||||
|
crashreportupgrade : "com.mogo.test:crashreport-upgrade:${MOGO_COMMONS_VERSION}",
|
||||||
|
skinsupportbase : "com.mogo.skin:skin-support-base:${MOGO_COMMONS_VERSION}",
|
||||||
|
skinsupportappcompat : "com.mogo.skin:skin-support-appcompat:${MOGO_COMMONS_VERSION}",
|
||||||
|
skinsupportcardview : "com.mogo.skin:skin-support-cardview:${MOGO_COMMONS_VERSION}",
|
||||||
|
skinsupportconstraintlayout : "com.mogo.skin:skin-support-constraint-layout:${MOGO_COMMONS_VERSION}",
|
||||||
|
skinsupportdesign : "com.mogo.skin:skin-support-design:${MOGO_COMMONS_VERSION}",
|
||||||
|
|
||||||
|
```
|
||||||
@@ -44,7 +44,7 @@ SNAPSHOT_REPOSITORY_URL=http://nexus.zhidaoauto.com/repository/maven-snapshots/
|
|||||||
USERNAME=xintai
|
USERNAME=xintai
|
||||||
PASSWORD=xintai2018
|
PASSWORD=xintai2018
|
||||||
# 编译模式: false - 依赖本地版本, true - 依赖 maven 版本
|
# 编译模式: false - 依赖本地版本, true - 依赖 maven 版本
|
||||||
USE_MAVEN_PACKAGE=false
|
USE_MAVEN_PACKAGE=true
|
||||||
##plugin 插件
|
##plugin 插件
|
||||||
#android.enableR8.libraries=false
|
#android.enableR8.libraries=false
|
||||||
#android.enableR8=false
|
#android.enableR8=false
|
||||||
|
|||||||
Reference in New Issue
Block a user