com.google.gson.stream.malFormededJSonexception: Verwenden Sie JsonReader.setlenient (true), um missgebildete JSON zu akzeptieren
Gson gson = new GsonBuilder()
.setLenient()
.create();
Retrofit retrofit = new Retrofit.Builder()
.baseUrl(BASE_URL)
.client(client)
.addConverterFactory(GsonConverterFactory.create(gson))
.build();
Uptight Unicorn