Commit ac4b6a7e09053b72fefb842eb64b2e102d384922

Authored by 杨帅
1 parent fcce818f

1.赛事详情

config.gradle
... ... @@ -21,7 +21,7 @@ ext {
21 21 //编译方式
22 22 debug : false,
23 23 //版本号
24   - version: "0.0.8",
  24 + version: "0.0.9",
25 25 //Lib库前缀
26 26 packeg : "com.cnlive.module",
27 27 //Lib库名称
... ...
moudle_pedometer/src/main/java/com/cnlive/moudle/pedometer/frame/presenter/RunningMapFragmentPresenter.java
... ... @@ -149,7 +149,6 @@ public class RunningMapFragmentPresenter extends MvpBasePresenter<RunningMapFrag
149 149 public void onHistoryTrackCallback(HistoryTrackResponse response) {
150 150 super.onHistoryTrackCallback(response);
151 151 int total = response.getTotal();
152   - Log.e(TAG, "onHistoryTrackCallback: total" + total + "数量");
153 152  
154 153 if (StatusCodes.SUCCESS != response.getStatus()) {
155 154 Toast.makeText(context, "获取轨迹失败!" + response.getStatus(), Toast.LENGTH_SHORT).show();
... ... @@ -356,7 +355,6 @@ public class RunningMapFragmentPresenter extends MvpBasePresenter<RunningMapFrag
356 355 @Override
357 356 public void onMonitoredStatusCallback(MonitoredStatusResponse monitoredStatusResponse) {
358 357 Toast.makeText(context, "围栏列表回调成功:onMonitoredStatusCallback", Toast.LENGTH_SHORT).show();
359   - Log.e(TAG, "onMonitoredStatusCallback: " + monitoredStatusResponse.getMonitoredStatusInfos().get(0).getMonitoredStatus());
360 358 //查询监控对象状态响应结果
361 359 List<MonitoredStatusInfo> monitoredStatusInfos = monitoredStatusResponse.getMonitoredStatusInfos();
362 360 for (MonitoredStatusInfo monitoredStatusInfo : monitoredStatusInfos) {
... ...