I am using gracenote ApI for song recognization.i am getting all the detail like song name,artist name and album but I am unable to get cover Art of album. I am using the code to get it but I always get null in that code. I searched a lot for this but found nothing. Somebody tells me that how to do this.i searched on gracenote documentation they describe the following code to get the coverArt.
// Retrieve cover art URL
// where response is GNSearchResult.
GNCoverArt coverArt = response.getCoverArt();
if(coverArt != null) {
String coverArtUrl = coverArt.getUrl();
}else {
Log.i("URL", "NOT GETTT");
}
I always get coverArt=null
.