Also, a word to the wise/warning: After including the plugin in build.settings, the following does not work.
[lua]
analytics:setCurrentProvider(“flurry”)
analytics.init(“FLURRYID”)
[/lua]
The project will build fine, but Flurry will not actually get initialized and analytics won’t get reported.
Instead, you have to put setCurrentProvider after init (which seems strange, since how would analytics “know” what the ID was for when it was called):
[lua]
analytics.init(“FLURRYID”)
analytics:setCurrentProvider(“flurry”)
[/lua]
Even more surprisingly, you can omit setCurrentProvider entirely and just write:
[lua]
analytics.init(“FLURRYID”)
[/lua]