参见英文答案 >
retrofit convertor factory can not access GsonConverterFactory5个
在设置Converter for时,我正在尝试使用Retrofit 2.0.0.beta2
Gson喜欢以下
在设置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中