android – 错误:不兼容的类型:GsonConverterFactory无法转换为工厂

前端之家收集整理的这篇文章主要介绍了android – 错误:不兼容的类型:GsonConverterFactory无法转换为工厂前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > retrofit convertor factory can not access GsonConverterFactory5个
在设置Converter for时,我正在尝试使用Retrofit 2.0.0.beta2
Gson喜欢以下
Retrofit retrofit = new Retrofit.Builder()
            .baseUrl(BASE_URL)
            .addConverterFactory(GsonConverterFactory.create())
            .build();

这个gradle抛出错误之后

GsonConverterFactory cannot be converted to Factory

怎么解决???

解决方法

你可能是GsonConverterFactory的第一个测试版,它是Retrofit的第二个测试版.请确保你有
compile 'com.squareup.retrofit:converter-gson:2.0.0-beta2'

在你的gradle中

原文链接:/android/313618.html

猜你在找的Android相关文章