reformat code & optimize import & rearrange code
This commit is contained in:
@ -1,24 +1,39 @@
|
||||
package com.gh.common.util;
|
||||
|
||||
import android.content.Context;
|
||||
|
||||
import com.gh.base.AppController;
|
||||
import com.gh.download.DownloadEntity;
|
||||
import com.gh.gamecenter.retrofit.Response;
|
||||
import com.gh.gamecenter.retrofit.RetrofitManager;
|
||||
import okhttp3.*;
|
||||
|
||||
import org.json.JSONObject;
|
||||
import rx.android.schedulers.AndroidSchedulers;
|
||||
import rx.schedulers.Schedulers;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
import okhttp3.MediaType;
|
||||
import okhttp3.RequestBody;
|
||||
import okhttp3.ResponseBody;
|
||||
import rx.android.schedulers.AndroidSchedulers;
|
||||
import rx.schedulers.Schedulers;
|
||||
|
||||
/**
|
||||
* Created by LGT on 2016/12/8.
|
||||
* 日志上传工具类
|
||||
*/
|
||||
public class DataLogUtils {
|
||||
|
||||
// 轮播图
|
||||
public static void uploadLunbotuLog(Context context, String type, String title, String location) {
|
||||
Map<String, Object> map = new HashMap<>();
|
||||
map.put("location", location);
|
||||
map.put("type", type);
|
||||
map.put("title", title);
|
||||
map.put("form", "click");
|
||||
uploadLog(context, "lunbotu", map);
|
||||
}
|
||||
|
||||
// 上传日志
|
||||
public static void uploadLog(Context context, String topic, Map<String, Object> map) {
|
||||
String version = PackageUtils.getVersionName(context);
|
||||
@ -43,16 +58,6 @@ public class DataLogUtils {
|
||||
.subscribe(new Response<ResponseBody>());
|
||||
}
|
||||
|
||||
// 轮播图
|
||||
public static void uploadLunbotuLog(Context context, String type, String title, String location) {
|
||||
Map<String, Object> map = new HashMap<>();
|
||||
map.put("location", location);
|
||||
map.put("type", type);
|
||||
map.put("title", title);
|
||||
map.put("form", "click");
|
||||
uploadLog(context, "lunbotu", map);
|
||||
}
|
||||
|
||||
// 网络错误
|
||||
public static void uploadNeterrorLog(Context context, DownloadEntity downloadEntity) {
|
||||
Map<String, Object> map = new HashMap<>();
|
||||
|
||||
Reference in New Issue
Block a user