On the smartphone, only appears a background color

_ Good day! _

Created the stage game in Corona SDK. In the simulator everything works fine. But when install apk to your smartphone, then there is only the background color. All other buttons and images disappear.

In file for Windows is also okay visible and functioning.

Who could not be with me to find the cause of this problem?

All other projects I’ve done, normally shown on the smartphone screen!

orientation = { -- Supported values for orientation: -- portrait, portraitUpsideDown, landscapeLeft, landscapeRight default = "landscapeRight", supported = { "landscapeRight", }, },

application = { content = { width = 540, height = 960, scale = "letterBox", fps = 30, --[[imageSuffix = { ["@2x"] = 2, ["@4x"] = 4, }, --]] }, }

The most likely cause is a file name that’s got a case-sensitive mis-match, but the simulator can only get your app close. There are plenty of reasons why an app would crash on device. You have to look at the console log on the device and see what’s going on. 

If you need help with this, see:  https://docs.coronalabs.com/guide/basics/debugging/index.html

Rob

The most likely cause is a file name that’s got a case-sensitive mis-match, but the simulator can only get your app close. There are plenty of reasons why an app would crash on device. You have to look at the console log on the device and see what’s going on. 

If you need help with this, see:  https://docs.coronalabs.com/guide/basics/debugging/index.html

Rob