使用 Retrofit 遇到的问题(待更新)

  • Gson
    由于compile 'com.squareup.retrofit2:converter-gson:2.2.0'中已经包含 Gson 相关,所以不需要重复依赖compile 'com.google.code.gson:gson:x.x.x'
    重复依赖以及依赖版本比 Retrofit 2.0 中所用 Gson 版本低的话,会造成
@Override
public void onFailure(Call>> call
        , Throwable t) {
    Log.d("failure", t.getMessage());
}

打印内容为D/failure: com.google.gson.Gson.newJsonReader的错误

你可能感兴趣的:(使用 Retrofit 遇到的问题(待更新))