Here is my code located in Main.lua:
local function onSystemEvent (event)
--print (event.name…", “…event.type) --example: system, applicationStart
local t=event.type
local n=event.name
if t==“applicationExit” or t==“applicationSuspend” or t==“applicationResume” then
showDeveloperInfo(“EventName:”…n…”, EventType:"…t)
end
end
Any idea why my ApplicationResume in iOS 8.3 always restarts the App, even when all I do is try to come back to the App in memory after running another App? This is the same behavior which occurs when I click on the App to start it, even if it is already in memory.