Flurry Analytics Not Correct

The Flurry analytical information started well with our app but doesn’t seem to be logging all the users as Flurry download numbers are about 10% of actual download numbers.

This is the entry we have in build. I note we haven’t included supportedPlatforms = { iphone=true, android=true } but does that matter if we are targeting both iOS and Android?

 plugins = { ["CoronaProvider.analytics.flurry"] = { publisherId = "com.coronalabs" }, ["CoronaProvider.gameNetwork.google"] = { publisherId = "com.coronalabs", supportedPlatforms = { android=true } }, },

Then in main we have:

local analytics   = require( “analytics” )

analytics.init( “<Flurry key>” )

I believe there is a new version in the works since the documentation is already up. Hopefully that will fix this issue.

There is a new Flurry Analytics plugin out. See: https://coronalabs.com/blog/2016/04/12/new-flurry-analytics-plugin-now-available/

Rob