Git Product home page Git Product logo

analytics-wrapper's Introduction

AnalyticsWrapper

A multi analytics service wrapper

##Setup

Latest Release

Add core dependency, with latest release version name

repositories {
    maven { url "https://jitpack.io" }
}
compile 'com.github.aardouin.analytics-wrapper:core:$version'

Make sure you got the right permissions for your app :

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

##Quick start guide

####Init AnalyticsManager It is advised to use AnalyticsManager as a singleton inside your application :

private static AnalyticsManager analyticsManagerInstance;
@Override
public void onCreate() {
    super.onCreate();
    analyticsManagerInstance = new AnalyticsManager();
}

public static AnalyticsManager getAnalyticsInstance(){
    return analyticsManagerInstance;
}

In order to add a new analytics provider, include it into gradle :

compile 'com.github.aardouin.analytics-wrapper:$provider:$version'

Add provider instance to using :

analyticsManagerInstance.addAnalytics("analyticsName",AbstractAnalytics analytics)

##Providers available

##Simple events tracking

Tracking can be made for every analytics instance available to the manager or for a specific analytics instance :

i.e :

analyticsManagerInstance.trackScreen("screenName");

analyticsManagerInstance.getAnalyticsInstance("specificAnalyticsName")
						.trackScreen("screenName");

Tracking method available are the following :

void trackScreen(String screenName);
void trackClickEvent(String eventName);

analytics-wrapper's People

Contributors

aardouin avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.