changed the ack

This commit is contained in:
zhongchao
2021-02-20 16:43:58 +08:00
parent e10b5f67f3
commit f8baf1282f
9 changed files with 139 additions and 37 deletions

View File

@@ -49,6 +49,8 @@ public class MoGoApplication extends MultiDexApplication {
clientConfig.setThirdPartyDeviceId(Devices.getSn());
// 设置循环检测间隔时间
clientConfig.setLoopCheckDelay(15 * 1000);
// 设置是否属于高精定位设备
clientConfig.setIsAccuracyDevice(false);
// 设置DNS经纬度位置
clientConfig.setIHttpDnsCurrentLocation(new IHttpDnsCurrentLocation() {

View File

@@ -27,6 +27,7 @@ class SPIRealTimeTestClass implements IRealTimeProvider {
recognizedResult.carId = "11";
recognizedResult.alt = 55;
recognizedResult.speed = 7.0;
recognizedResult.dataAccuracy = 0;
list.add(recognizedResult);
return list;
}