Maybe I am missing something.
If I run my app with landscape mode,
orientation = { default = "landscape", supported = { "portrait", "landscape" } },
It starts as landscape and runs fine.
And if I start the app as “portrait”, it runs fine too. So I thought when the orientation happens, the process would be taken care of automatically.
But it seems not, because when I choose the option “Hardware->Rotate Left” (or Rotate Right), the app screen goes wrong.
I think I have to do something in the code when the orientation happens, but I don’t.
Runtime:addEventListener( "orientation", onOrientationChange )
Is this what I should take care of no matter what?