If you think the Android project tapad-android-sdk listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
package com.tapad.tracking;
/*www.java2s.com*//**
* Tapad event tracking interface.
*/publicinterface TrackingService {
/**
* Default event for application installs.
*/staticfinal String EVENT_INSTALL = "install";
/**
* Default event for application launch.
*/staticfinal String EVENT_LAUNCH = "launch";
/**
* Registers the specified event with the Tapad event tracking service. The
* actual event dispatch is done asynchronously, so this method will never
* block.
*
* @param eventId the id of the event, either one of the predefined constants, or developer specific ones
*/void onEvent(String eventId);
/**
* Registers the specified event with the Tapad event tracking service. The
* actual event dispatch is done asynchronously, so this method will never
* block.
*
* @param eventId the id of the event, either one of the predefined constants, or developer specific ones
* @param extraParameters an opaque string og extra parameters that will be sent til the event tracking service
*/void onEvent(String eventId, String extraParameters);
}