Hi, I’ve found and issue, don’t know where to put it.
Every time my iPad is in Airplane mode, the application run the splash screen ( video playback ) and the next scene it render in black.
If I turn off the Airplane mode an connect to Internet, the application runs fine.
I don’t have any call to the network api or the apple store, the scene only places an image as background.
I’m using the Corona Version 2013.2100 (2013.12.7)
This only happens shen I run it on the Device, works fine in the simulator.
This i the code i’m using
local storyFactory=require “system.library.storyFactory”
return storyFactory:createScene({
prev="",
next=“view.librero”,
actual=“view.portada”,
background=“assets/backgrounds/view/main.png”,
scene={
create=createScene,
exit=exitScene
}
})
An the storyFactory file is attached.
Thank You.