Back to project page playnomics-android.
The source code is released under:
Apache License
If you think the Android project playnomics-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.
package com.playnomics.android.sdk; // w w w .j a va2 s . c o m public abstract interface IPushConfig { /* * Provides the SDK with a destination to send the user when they interact with * your push notification. This activity's intent will be flagged as FLAG_ACTIVITY_NEW_TASK and * FLAG_ACTIVITY_CLEAR_TOP, so that a new version of this activity will be launched. * * @result Returns an Class for a derivative of Activity. */ public Class<?> getNotificationDestination(); /* * Provides the SDK with the icon that should be shown adjacent to message in the Notification * Manager. */ public int getNotificationIcon(); }