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.tracking.deviceidentification; /*from w ww . ja v a2 s.com*/ import android.content.Context; import java.util.List; /** * Produces identifiers */ public interface IdentifierSource { /** * @return An collection of identifiers this source is able to produce */ List<TypedIdentifier> get(Context context); }