In my code I have several animations that are displayed correctly in the alexa simulator (test).
However, when I export the skill and start it on an amazon echo show 10 device, the animations are not displayed.
Does anyone know why?
I can say that I don't get any error in the execution and everything works perfectly in the simulator.
Here is a small piece of code I use.
item_command = ParallelCommand( commands = [ AnimateItemCommand( component_id = ide, delay = 200, duration = 400, repeat_count = 1, repeat_mode ="reverse", value = [{"property": prop,"to": 0.4}] ), SpeakItemCommand( component_id=idtouch ) ] )