@cspence, I don’t think Flurry works with Simulator. I call analytics.init and analytics.logEvent only if system.getInfo(“environment”) does not return “simulator”. I wonder if calling these functions from simulator is causing you the problem…
Naomi
Edit: I just tested it. Yes, if I call analytics.init and analytics.logEvent from simulator, I get the same message. If you don’t want to see it, you just need to check the device before calling these functions:
local isSimulator = system.getInfo("environment") == "simulator"
if (not isSimulator) then
analytics.init("XXXXXXXXXXXXX") -- replace XXXXXXXXXXXXX with the ID you get from Flurry
analytics.logEvent("Log This Event")
end
[import]uid: 67217 topic_id: 33443 reply_id: 133928[/import]