wobiancao / sugar

🍯 简单便捷 快速开发Android项目,集合流行框架封装mvp + rxjava2 + retrofit2 + rxlifecycle3 + arouter...
32 stars 7 forks source link

请问怎么修改Json解析库?你项目默认是GSon的,但是我并不想用Gson #4

Closed Alexxiaopang closed 5 years ago

Alexxiaopang commented 5 years ago

可以了,我下载你的库直接修改

wobiancao commented 5 years ago

谢谢反馈,你说的是网络请求的转换吗,后续计划加上可以选择的转换即可

Alexxiaopang commented 5 years ago

对,就是解析数据返回的数据,阿里巴巴的fastjson会好用很多,对于一些空字串或者类型变换会好很多,GSON处理真的太差了

wobiancao commented 5 years ago

这个已经加上了,支持使用自己的ConverterFactory

 //自定义ConverterFactory
                .addConverterFactory(FastJsonConverterFactory.create())

DemoConfigure