修改obu sdk版本

This commit is contained in:
lixiaopeng
2022-09-28 14:40:06 +08:00
parent 443620edb2
commit 9c6e50b5bf
2 changed files with 6 additions and 6 deletions

View File

@@ -113,7 +113,7 @@ ext {
// obu sdk
obusdk : "com.zhidao.enterprise.smartv2x:smartv2x:1.0.0.3",
// mogoobu : 'com.zhidao.support.obu:mogoobu:1.0.0.33',
mogoobu : 'com.mogo.support.obu:mogo-obu:1.0.0_beta14',
mogoobu : 'com.mogo.support.obu:mogo-obu:1.0.0',
mogoami : 'com.zhidao.support.obu.ami:mogoami:1.0.0.24',
// google

View File

@@ -23,7 +23,7 @@ class MoGoObuProvider : IMoGoObuProvider {
private var mContext: Context? = null
private val busObuIp = "192.168.8.199"
private val taxiObuIp = "192.168.1.199"
private val taxiObuIp = "192.168.1.199"
// private val taxiObuIp = "192.168.0.56"
@@ -44,8 +44,8 @@ class MoGoObuProvider : IMoGoObuProvider {
//不处理
} else {
mContext = context
val thread = object : Thread() {
override fun run() {
// val thread = object : Thread() {
// override fun run() {
mContext?.let {
if (AppIdentityModeUtils.isBus(FunctionBuildConfig.appIdentityMode)) {
MogoPrivateObuNewManager.INSTANCE.connectObu(
@@ -61,8 +61,8 @@ class MoGoObuProvider : IMoGoObuProvider {
)
}
}
}
}.start()
// }
// }.start()
}
}