Whats on like 87 in init.lua? Can you share that line and maybe a couple more that are maybe related to it? Sometimes the simulator doesn’t show the problem but on the device it occurs.
That line refers to assets to which Corona SDK developers do not have access.
What that error means, is that there is an event listener that was added, which doesn’t actually exist. It could be something as simple as:
local randomObject = display.newRect(0,0,100,300) function doThis(event) if event.phase == "ended" then print("I'm pressing doThis") end end randomObject:addEventListener("touch", doThat) -- notice how the actual event listener handle is different
Check through your code and ensure that everything matches up.
Whats on like 87 in init.lua? Can you share that line and maybe a couple more that are maybe related to it? Sometimes the simulator doesn’t show the problem but on the device it occurs.
That line refers to assets to which Corona SDK developers do not have access.
What that error means, is that there is an event listener that was added, which doesn’t actually exist. It could be something as simple as:
local randomObject = display.newRect(0,0,100,300) function doThis(event) if event.phase == "ended" then print("I'm pressing doThis") end end randomObject:addEventListener("touch", doThat) -- notice how the actual event listener handle is different
Check through your code and ensure that everything matches up.