[3.3.0][Feat]新增状态监控汇总功能

This commit is contained in:
chenfufeng
2023-06-13 22:37:54 +08:00
parent 9f2c713767
commit 204ce4c2ea
29 changed files with 843 additions and 15 deletions

View File

@@ -55,4 +55,11 @@ interface IMoGoDevaToolsListener {
}
fun gpsStatus(status:Boolean) {// true:开启并授权
}
fun tracingStatus(status:Boolean) {// true未异常
}
}

View File

@@ -148,4 +148,5 @@ interface IMoGoHmiProvider :IProvider{
* 360环视弹窗是否正在展示
*/
fun is360LookAroundShowing(): Boolean
fun showStatusSummaryDialog()
}

View File

@@ -0,0 +1,5 @@
package com.mogo.eagle.core.function.api.telematic
interface IConnectStatusListener {
fun onServerStatusChanged(isStarted: Boolean) {}
}