Hi,
I made an app that only supports landscape orientation, but in one of my users device it has launched in portrait mode. He’s using OnePlus One with CM11.
How should I fix that? I couldn’t find any solution and it’s hard to me to test that as it works well on the simulator, android emulator and my android devices.
My build.build settings:
settings = { orientation = { default = "landscapeRight", supported = { "landscapeRight", "landscapeLeft"} }, ... }
and config.lua:
application = { content = { width = 320, height = 320 \* display.pixelHeight / display.pixelWidth, scale = "letterBox", fps = 30, imageSuffix = { ["@2x"] = 1.5, ["@4x"] = 3, }, }, }