The daily build 1203 release notes indicate that Flurry was moved to a plugin. However, the documentation on how to include the plugin is missing, and I’m getting an error when I try to build with it.
I assume the usage would be like this:
[lua]
– snippet from build.settings
plugins =
{
[“CoronaProvider.analytics.flurry”] =
{
publisherId = “com.coronalabs”,
},
},
[/lua]
[lua]
– snippet from .lua file using analytics
local analytics = require(“analytics”)
analytics:setCurrentProvider(“flurry”)
analytics.init(flurryAppID)
analytics.logEvent(“Event”)
[/lua]
However, when building with this setup in daily build 1203, I receive “Build Error #5, Error: You are not currently subscribed to the following plugins com.coronalabs:CoronaProvider.analytics.flurry.” I’m a Pro subscriber.
Thanks!
- Andrew