Skip to content

ThomasGoehringer/piwik-sdk-android

 
 

Repository files navigation

Piwik SDK for Android

Build Status Download Coverage Status

Welcome to the Piwik Tracking SDK for Android. This library helps you send analytics data from Android apps to Piwik instances.

Features:

Quickstart

For the not so quick start, see here or look at our demo app

  • Setup Piwik on your server.
  • Include the library in your app modules build.gradle file
    implementation 'org.piwik.sdk:piwik-sdk:<latest-version>'
  • Initialize your Tracker either by extending our PiwikApplication class or storing an instance yourself:
public class YourApplication extends Application {
    private Tracker tracker;
    public synchronized Tracker getTracker() {
        if (tracker == null) tracker = Piwik.getInstance(this).newTracker(new TrackerConfig("http://domain.tld/piwik.php", 1));
        return tracker;
    }
}
  • The TrackHelper class is the easiest way to submit events to your tracker:
// Get the `Tracker` you want to use
Tracker tracker = ((PiwikApplication) getApplication()).getTracker();
// Track a screen view
TrackHelper.track().screen("/activity_main/activity_settings").title("Settings").with(tracker);
// Monitor your app installs
TrackHelper.track().download().with(tracker);

License

Android SDK for Piwik is released under the BSD-3 Clause license, see LICENSE.

About

SDK for Android to measure your apps with Piwik

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%