我下载了retrofit:2.0.0-beta2
。
我添加到build.gradle
文件就像compile('com.squareup.retrofit:retrofit:2.0.0-beta2'
)
我可以导入改进类期望RestAdapter
。
我该如何解决这个问题?
import retrofit.Callback;
import retrofit.Response;
import retrofit.Retrofit;
我不能
import retrofit.RestAdapter;
答案 0 :(得分:5)
为什么不使用稳定版本的改装?
compile 'com.squareup.retrofit:retrofit:1.9.0'