我无法解决Retrofit:2。+但是当我用1.9.0替换时,没有错误。帮助我需要做什么。我也在使用Android studio 2.3.3
dependencies
{
compile 'com.android.support:appcompat-v7:26.+'
compile 'com.squareup.retrofit:retrofit:2.0.2'
testCompile 'junit:junit:4.12'
}
答案 0 :(得分:2)
您错过了retrofit2链接中的改装版本2
使用
compile 'com.squareup.retrofit2:retrofit:2.0.2'
而不是
compile 'com.squareup.retrofit:retrofit:2.0.2'