Back to project page piwik-sdk-android.
The source code is released under:
Copyright 2014 Piwik team All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redi...
If you think the Android project piwik-sdk-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Android SDK for Piwik//from w ww . j a v a 2 s . c om * * @link https://github.com/piwik/piwik-android-sdk * @license https://github.com/piwik/piwik-sdk-android/blob/master/LICENSE BSD-3 Clause */ package com.piwik.demo; import org.piwik.sdk.PiwikApplication; public class DemoApp extends PiwikApplication { @Override public String getTrackerUrl() { return "http://beacons.testing.piwik.pro/piwik.php"; } /** * AuthToken is deprecated in Piwik >= 2.8.0 due to security reasons. * @return token or null */ @Override public String getAuthToken() { return null; } @Override public Integer getSiteId() { return 4; } }