fix apiservice

This commit is contained in:
CsHeng
2017-09-11 15:37:31 +08:00
parent c487dc2f03
commit 47f7d70cfb
99 changed files with 721 additions and 555 deletions

View File

@ -3,16 +3,16 @@ package com.gh.gamecenter.manager;
import android.content.Context;
import android.preference.PreferenceManager;
import com.gh.base.AppController;
import com.gh.common.util.Installation;
import com.gh.common.util.PackageUtils;
import com.gh.common.util.TokenUtils;
import com.lightgame.utils.Utils;
import com.gh.gamecenter.db.DataCollectionDao;
import com.gh.gamecenter.db.info.DataCollectionInfo;
import com.gh.gamecenter.retrofit.JSONObjectResponse;
import com.gh.gamecenter.retrofit.Response;
import com.gh.gamecenter.retrofit.RetrofitManager;
import com.halo.assistant.AppController;
import com.lightgame.utils.Utils;
import org.json.JSONArray;
import org.json.JSONException;
@ -71,7 +71,7 @@ public class DataCollectionManager {
RequestBody body = RequestBody.create(MediaType.parse("application/json"),
new JSONObject(params).toString());
RetrofitManager.getData().postRealData(body)
RetrofitManager.getInstance(mContext).getData().postRealData(body)
.subscribeOn(Schedulers.io())
.observeOn(AndroidSchedulers.mainThread())
.subscribe(new Response<ResponseBody>() {
@ -183,7 +183,7 @@ public class DataCollectionManager {
RequestBody body = RequestBody.create(MediaType.parse("application/json"),
new JSONArray(params).toString());
RetrofitManager.getData().postData(body)
RetrofitManager.getInstance(mContext).getData().postData(body)
.subscribeOn(Schedulers.io())
.observeOn(AndroidSchedulers.mainThread())
.subscribe(new JSONObjectResponse() {