ValueRequiredException during RSS feed parsing in Retrofit
问题 I'm trying to write a simple RSS reader app for Android. I'm using Retrofit for network communication with SimpleXMLConverter to populate POJOs from XML. This is my REST API: package ru.unatco.rss.data; import java.util.List; import retrofit.Callback; import retrofit.http.GET; public interface RssAdapter { @GET("/radio-t") void getItems(Callback<RadioTItems> callback); } This is the code that calls API: RestAdapter restAdapter = new RestAdapter.Builder() .setEndpoint("http://feeds.rucast.net"