Hello,
I’ve updated recently from a public build into build 2850 and it appears that my snapshots are no longer showing upon applicationresume.
I am using invalidate to refresh the snapshot upon applicationResume.
if "Android" == system.getInfo( "platformName" ) then local onSystemEvent = function(event) local eventType = event.type if (eventType == "applicationResume") then mapArray.snapShot:invalidate() end end Runtime:addEventListener("system", onSystemEvent) end