BuzzBox SDK gives you free analytics for your Android App


You need a free API Key from BuzzBox to use the analytics.
Using an Api Key protects your data from being public. Please get the Api Key from the BuzzBox Analytics:
<meta-data android:name="Scheduler.Analytics.apiKey" android:value="xxx" />
Add to the onCreate method of your main activity:
int openAppStatus = AnalyticsManager.onOpenApp(this);
To segment your users:
AnalyticsManager.setUserParam(PreferenceManager.getDefaultSharedPreferences(ctx), "gender", "female");
To track a goal:
AnalyticsManager.incrementGoal(ctx, "pruduct-page");