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);}
I have included in my gradle file compile 'com.squareup.retrofit2:converter-gson:2.0.2' compile 'com.squareup.retrofit2:retrofit:2.0.2'
Whats the issue?