ckage com.netvariant.helloworld; import retrofit.Callback; import retrofit.http.GET; import retrofit.http.Query; import retrofit.Call; public interface StackOverflowAPI { @GET("/2.2/questions?order=desc&sort=creation&site=stackoverflow") Call<StackOverflowQuestions> loadQuestions(@Query("tagged") String tags);}
我已经包含在我的gradle文件中 compile&#39; com.squareup.retrofit2:converter-gson:2.0.2&#39; 编译&#39; com.squareup.retrofit2:改造:2.0.2&#39;
问题是什么?