I am whoring whole API response to Room database for offline access. I have managed to store all string values but I want to store image (getting image url in response)into database as well. Since I have no experience in using Room database, I m confused about how to store image int Room db column Below is API response
{
"beast": [{
"id": "1",
"name": "The Griffin of Edward III",
"description": "The English Beast has always been a lion",
"image": "www.google.com/uploads/beast-images/2.png"
},
{
"id": "2",
"name": "The Lion of England",
"description": "The English Beast has always been a lion",
"image": "www.google.com/uploads/beast-images/2.png"
}]
}