I have built a skill that displays an image. I use a simple APL document:
{ "type": "Container", "height": "100%", "width": "100%", "items": [ { "type": "Image", "source": "https://www.arpae.it/sim/datiiningresso/Immagini/Radar/nowcast.png", "scale": "best-fit", "position": "absolute", "width": "100%", "height": "100%" } ] }
The skill works fine in the simulator and it always retrieves the most recent image (the image is updated every hour), but when I run the skill on my real devices (Echo Show 5 and Fire TV), it displays old images. It seems the devices are caching the image. How can I avoid that?