Back to project page tapad-android-sdk.
The source code is released under:
MIT License
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.
package com.tapad.sample; /* w ww . j a va 2 s . c o m*/ import android.app.Application; import com.tapad.adserving.AdServing; /** * If your app has multiple Activities and there is no guarantee that a particular one will always be started * before the others, this is the recommended place to initialize the AdServing or EventTracking SDK */ public class MainApplication extends Application { public void onCreate() { super.onCreate(); AdServing.init(this); // AdServing.init calls the Tracking init code. If you are just using the Tracking API, // call Tracking.init(this) instead of the above. } }