Hi all and Corona Team,
Strange story have happened with me today.
I develop new title, and decided do build it for ios 9.1. (iphone 6)
On android all working perfectly.
But on ios game became freezing in 2-3 minutes, and do crash after.
I long time tried to find crap in my code (thanks to corona team, I greatly improved my code :))
But bug was not fixed.
I decided make new build from old working game. Builded succesfully, but … bug has appeared in that game.
Therefore I made new empty project with endless cycles creating and destroying random rotating (transitions) cubes, and launched this “shit” on iphone.
And in 5 min … I have got the same freeze!
But I solved this problem by UNCHECKING MONETIZATION when I do build for iOS.
main.lua
display.setStatusBar(display.HiddenStatusBar) local function start() local a local mr = math.random function a() local b = display.newImageRect( "nul.png", mr(30,100), mr(30,100) ) b.x, b.y = mr(100,500), mr(100,500) transition.to( b, { time = 3000, rotation = 360, onComplete = function() b:removeSelf(); b = nil; a() end } ) end a() end timer.performWithDelay( 100, start )
NO config.lua
NO build.settings