添加不同版本的GSON而不是默认改装1.9

时间:2016-01-12 15:28:02

标签: android gson retrofit android-6.0-marshmallow

关于此错误https://github.com/google/gson/issues/648 我想使用更新版本的GSON,但是我不能使用更新版本的改装,因为直到下一个版本我没有足够的时间在所有地方更新API,我怎样才能使用最新版本的GSON在没有更新改造的改造中呢?

1 个答案:

答案 0 :(得分:2)

首先,我们需要从改造中排除gson的默认依赖:

compile("com.squareup.retrofit:retrofit:1.9.0") {
    exclude group: 'com.google.code.gson'
}

然后只需添加新版本gson的依赖项:

compile 'com.google.code.gson:gson:2.6.2'