I added APL to my skill. and I’m trying to update my skill to support APL via ask-cli. but it’s doesn’t work. I add the
"interfaces": [ { "type": "ALEXA_PRESENTATION_APL" } ]
to the skill.json file
I also tried with the viewports:
"interfaces": [ { "type": "ALEXA_PRESENTATION_APL", "supportedViewports": [ { "mode": "HUB", "shape": "ROUND", "minWidth": 480, "maxWidth": 480, "minHeight": 480, "maxHeight": 480 }, { "mode": "HUB", "shape": "RECTANGLE", "minWidth": 1024, "maxWidth": 1024, "minHeight": 600, "maxHeight": 600 }, { "mode": "HUB", "shape": "RECTANGLE", "minWidth": 1280, "maxWidth": 1280, "minHeight": 800, "maxHeight": 800 }, { "mode": "TV", "shape": "RECTANGLE", "minWidth": 960, "maxWidth": 960, "minHeight": 540, "maxHeight": 540 } ] }
But it doesn't works?
anyone knows why?
Thanks!!