Locked canvas orientation does not work.

orientation=
{
default = “portrait”,
content = “portrait”,
supported =
{
“landscapeLeft”, “landscapeRight”, “portrait”, “portraitUpsideDown”,
},
},

According to the docs the above should keep the Corona canvas locked to portrait but it doesn’t. On my Droid X the canvas is getting rotated. Are the docs wrong or is even this basic functionality broken? [import]uid: 26874 topic_id: 6209 reply_id: 306209[/import]

You are setting the default orientation to “portrait” but supporting all orientations. Set supported to:

{
“portrait”, “portraitUpsideDown”,
}, [import]uid: 35336 topic_id: 6209 reply_id: 21907[/import]