I'm trying to read this JSON using Retrofit but I got this error Could not locate ResponseBody converter for class org.json.JSONObject.
The JSON in ALE2 file
{ "a1":[...], "a2":[...], "a3":[...] } Code
Retrofit retrofit = new Retrofit.Builder().baseUrl(Constants.BASE_URL).build(); retrofit.create(RetrofitInterface.class).getData().enqueue(new Callback < JSONObject > () { @Override public void onResponse(Call < JSONObject > call, Response < JSONObject > response) { } @Override public void onFailure(Call < JSONObject > call, Throwable t) { } }); RetrofitInterface
public interface RetrofitInterface { @GET("ALE2") Call<JSONObject> getData(); } I don't want to store them in any model I just want to get the JSON as a string