项目作者: matomo-org

项目描述 :
SDK for Android to measure your apps with Matomo. Works on Android phones, tablets, Fire TV sticks, and more!
高级语言: Java
项目地址: git://github.com/matomo-org/matomo-sdk-android.git
创建时间: 2014-08-26T07:37:33Z
项目社区:https://github.com/matomo-org/matomo-sdk-android

开源协议:BSD 3-Clause "New" or "Revised" License

下载


Matomo SDK for Android


Build
Codecov

Welcome to the Matomo Tracking SDK for Android. This library helps you send analytics data from Android apps to Matomo instances. Until v4 this library was known as Piwik Tracking SDK for Android.

Features:

Quickstart

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

  • Setup Matomo on your server.
  • Include the library in your app modules build.gradle file
    via JitPack
  1. repositories {
  2. maven { url 'https://jitpack.io' }
  3. }
  4. dependencies {
  5. implementation 'com.github.matomo-org:matomo-sdk-android:<latest-version>'
  6. }
  • Now you need to initialize your Tracker. It’s recommended to store it as singleton. You can extend MatomoApplication or create and store a Tracker instance yourself:
    ```java
    import org.matomo.sdk.TrackerBuilder;

public class YourApplication extends Application {
private Tracker tracker;
public synchronized Tracker getTracker() {
if (tracker == null){
tracker = TrackerBuilder.createDefault(“http://domain.tld/matomo.php“, 1).build(Matomo.getInstance(this));
}
return tracker;
}
}

  1. * The `TrackHelper` class is the easiest way to submit events to your tracker:
  2. ```java
  3. // The `Tracker` instance from the previous step
  4. Tracker tracker = ((MatomoApplication) getApplication()).getTracker();
  5. // Track a screen view
  6. TrackHelper.track().screen("/activity_main/activity_settings").title("Settings").with(tracker);
  7. // Monitor your app installs
  8. TrackHelper.track().download().with(tracker);
  • Something not working? Check here.

License

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