Also waiting on this… any updates? [import]uid: 181352 topic_id: 34668 reply_id: 143954[/import]
Also waiting on this… any updates? [import]uid: 181352 topic_id: 34668 reply_id: 143954[/import]
Also waiting on this… any updates? [import]uid: 181352 topic_id: 34668 reply_id: 143954[/import]
Hi there,
It is indeed possible to use Flurry parameters (on iOS at least, haven’t tested on Android yet). The format is like this:
local params = {} params["Param Name 1"] = "Value 1" params["Param Name 2"] = "Value 2" analytics.logEvent( "Event Name", params)
- Andrew
yes, it also works on Android
you can also do things like
analytics.logEvent(“EventName”, {score=“1500-3000”, level = 3, skill=“expert”})
keep in mind you want to do ranges for things like scores since flurry doesn’t handle values very well, its more for ranges. But maybe they’ve changed that recently.
Hi there,
It is indeed possible to use Flurry parameters (on iOS at least, haven’t tested on Android yet). The format is like this:
local params = {} params["Param Name 1"] = "Value 1" params["Param Name 2"] = "Value 2" analytics.logEvent( "Event Name", params)
- Andrew
yes, it also works on Android
you can also do things like
analytics.logEvent(“EventName”, {score=“1500-3000”, level = 3, skill=“expert”})
keep in mind you want to do ranges for things like scores since flurry doesn’t handle values very well, its more for ranges. But maybe they’ve changed that recently.