无法解决:'com.squareup.retrofit2.converter-gson:2.3.0'

时间:2018-03-08 05:22:47

标签: retrofit

我正在尝试使用Android Studio 3.2 Canary 5

包含'com.squareup.retrofit2.converter-gson:2.3.0'

见下图

enter image description here

4 个答案:

答案 0 :(得分:2)

因为你可以在谷歌搜索,这个工作,我希望它也可以帮助你

implementation 'com.squareup.retrofit2:retrofit:2.4.0'
implementation 'com.google.code.gson:gson:2.8.4'

Solution

答案 1 :(得分:0)

只需将其粘贴:

  • 实现'com.google.code.gson:gson:2.8.5'

  • implementation'com.squareup.retrofit2:retrofit:2.6.1'

答案 2 :(得分:0)

使用(可能的话)最新版本,我遇到了同样的错误,但是看起来像是改版'com.squareup.retrofit2.converter-gson:2.3.0'版本2.3.0 不推荐使用。

这对我有用:

//Retrofit2
implementation 'com.squareup.retrofit2:retrofit:2.6.2'
implementation 'com.squareup.retrofit2:converter-gson:2.6.2'

来源:

https://square.github.io/retrofit/

https://github.com/square/retrofit

答案 3 :(得分:0)

效果很好。

//retrofit
implementation 'com.squareup.retrofit2:retrofit:2.8.1'
implementation 'com.squareup.retrofit2:converter-gson:2.8.1'

它为您提供/提供您所需的最新存储库。