Skip to content

Files

Latest commit

932c36c · Feb 5, 2013

History

History
This branch is 332 commits ahead of apollosande/titanium_modules:master.

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Feb 5, 2013
Jan 23, 2012
Apr 2, 2011
Feb 5, 2013
Nov 29, 2011
Apr 2, 2011
Apr 11, 2012
Apr 2, 2011
Apr 2, 2011
Apr 2, 2011
Jan 17, 2012
Feb 5, 2013
Apr 2, 2011
Jan 23, 2012
Jan 27, 2012
Apr 24, 2012
Feb 5, 2013
Apr 25, 2012
Appcelerator Titanium Module for Flurry Analytics
=================================================

This is the Flurry Analytics Module for Titanium.  It will provide you
with access to Flurry integration in your Titanium iPhone application.

Application Initialization
---------------------------

To setup your app, you need to initialize the module with your 
Flurry application API key.  You should place this command in your 
app.js:

Titanium.Flurry.initialize("YOUR_API_KEY");

Make sure you replace YOUR_API_KEY with your *actual* key.

That's it for the basics.  You should now receive Flurry analytics data.

Extra Stuff
------------

Forcing Transmission on Shutdown

By default, Flurry will only log upon subsequent runs of the application and 
caches logged data on the device.  You can force Flurry to attempt to send
data upon exit of the app by calling the following API:

Titanium.Flurry.reportOnClose(true);

Custom Event Logging

To log events using custom events, you can call the following API:

Titanium.Flurry.logEvent(event_name,parameters);

Where `event_name` is a string name of your event and where `parameters` (optional)
is a Javascript dictionary of key value pairs (JSON serializable) that you want to 
associate with the event.




Legal
-------

This module is Copyright (c) 2010 by Appcelerator, Inc. All Rights Reserved.
Flurry is Copyright(c) 2010 by Flurry, Inc.  Usage of this module is subject to 
the Terms of Service agreement of Flurry, Inc. as well as your Terms of Service
agreement with Appcelerator, Inc.