I've made a game using Corona-SDK. It has 2 scenes: (1) Menu scene and (2) Game scene. I need my app to be supported with two orientations : 'landscapeRight' and 'landscapeLeft'. For that, I used the following lines of code in build.settings :
orientation =
{
default = "landscapeRight",
supported =
{
"landscapeRight", "landscapeLeft"
},
}
Unfortunately, this will affect the whole app.
But I want my game scene to be supported with only one orientation(eg: landscapeRight or landscapeLeft or in portrait).