Skip to content

bolav/fuse-flurry

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fuse-Flurry

license Build Status

Flurry API bindings for Fusetools.

Compiling

This project requires -DCOCOAPODS on iOS, and -DGRADLE on Android.

Running the Example project

You can find the example in the FlurryExample folder. It contains:

  • FlurryExample.unoproj - Our project file
  • MainView.ux - The Super basic markup for our app (NO UI)

Editing the Flurry parts

Log in to [https://y.flurry.com/admin/applications], and get your API keys. According to StackOverflow it might be possible to run both Android and iOS on the same token. You can then use Token in your markup, else use iOSToken and AndroidToken. Fill in the tokens in your UX and you are ready.

Run

You should now be able to run, and get the result in your realtime analyitcs.

JavaScript API

require

var flurry = require('Flurry/Analytics');

logEvent

flurry.logEvent("FuseEvent");
flurry.logEvent("FuseEvent", {Author: "John Q", User_Status: "Registered"});

Timed Event

flurry.logEvent("FuseEvent", {}, true);
flurry.endTimedEvent("FuseEvent");

flurry.logEvent("FuseEvent", {Author: "John Q", User_Status: "Registered", Some_Other: "Created"}, true);
flurry.endTimedEvent("FuseEvent", { Some_Other: "Updated" });

About

Fuse API bindings for Flurry

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages