Analytics

Have feedback or questions on this section? Just click the Help tab on the right side of your screen.

Analytics/GettingStarted/Blackberry


STEP 1: Basic Setup in 5 minutes

You can gain deep insight into your customer's behavior very quickly and with little effort using Flurry's Analytics service.

1. Download the Flurry Blackberry SDK
2. Add the Flurry folder to your classpath
3. Follow instructions in README for adding permissions and libraries to your native or cascades app.
4. Incorporate the following two lines of Flurry code:

NATIVE

#include "FlurryC.h"
 
 int main(int argc, char **argv) 
 {
      flurry_start_session("<FLURRY_API_KEY>", NULL, NULL, 0);
 
      //your code
 }


CASCADES

#include <Flurry.h>
 
Q_DECL_EXPORT int main(int argc, char **argv) {
 {
      Flurry::Analytics::StartSession("<FLURRY_API_KEY>");
 
      //your code
 }


Those 3 steps will give you access to the features below (see Analytics Dictionary for details)

  • Sessions
  • Active Users
  • New Users
  • Session Length
  • Frequency of Use
  • Page Views
  • Custom User Segments
  • Lifecycle Metrics
  • User Retention
  • Version Adoption
  • Cross-App Usage
  • Category Interests
  • User Paths
  • Benchmarks
  • Geographic Usage
  • Devices
  • Carriers
  • Firmware Versions

STEP 2: Understand user behavior through tracking Custom Events.