Skip to content

shivakumars/Titanium-Android-Count.ly

Repository files navigation

Titanium-Android-Count.ly(old version)

For new version of the module, Please click here

Countly is an innovative, real-time, open source mobile analytics application. It collects data from mobile phones, and visualizes this information to analyze mobile application usage and end-user behavior. There are two parts of Countly: the server that collects and analyzes data, and mobile SDK that sends this data (for iOS & Android).

Countly Server;

Other Countly SDK repositories;

Please note that this Module is under development.

Installation

Register your module with your application by editing tiapp.xml and adding your module.

<modules>
<module platform="android">ly.count</module>
</modules>

Usage

Start Count.ly

Start Tracking

var countly = require('ly.count');
countly.countInit("http://YOURSERVER","API_KEY");

Record Events

Fields

  • name : Name of the event to track
  • (example - Track clicks on the help button "clickedHelp" )
  • count : Number to increment the event in the db
  • (example - User purchases item increment by 1 )
  • segmentation : Categorization of the event
  • (example - User is from USA and uses an iPhone 4S so the segmentation will be {device:"iPhone 4S", country:"USA"} )

Simple Event


//Example: countly.sendEvent(name,count);

countly.sendEvent("HomeButton",1);

Event With Segmentation


// Example: countly.sendAdvancedEvent(name, segmentation, count);

var segmentation = {"buttonName": "HomeButton",
"buttonLocation": "TopBar",
};

countly.sendAdvancedEvent("HomeScreen", segmentation, 1);

About

Count.ly SDK for Titanium Android

Resources

License

Unknown, Unknown licenses found

Licenses found

Unknown
LICENSE
Unknown
LICENSE.txt

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published