How do I make my gamee for Android a non rotating screen?

I have this problem , my game is designed for landscape not for portrait and the tablet is rotating the screen every time I flip it, do you know how to stop this?

You export GD games to Android through Intel XDK, and it seems that you can lock the landscape with a code line in Intel XDK :slight_smile: :
https://software.intel.com/en-us/node/493051

I haven’t Intel XDK installed, so I can’t help you about where to put the code :frowning:

export it for intel xdk and the open index.html then put this in:

intel.xdk.device.setRotateOrientation(“landscape”);

Tadaaa!

Thank you for answers, you are great!!!