/
Silent push for Android
Silent push for Android
The onSilentPush
function will be activated along with onPushReceived
when the notification is silent
public class MyPushBroadcastReceiver extends PushDataReceiver {
@Override
public void onPushReceived(PushData pushData) {
Log.d("APX", "Push received " + pushData);
}
@Override
public void onPushOpened(PushData pushData) {
Log.d("APX", "Push opened " + pushData);
}
@Override
public void onPushDismissed(PushData pushData) {
Log.d("APX", "Push dismissed " + pushData);
}
@Override
public void onSilentPush(PushData pushData) {
Log.d("APX", "Push Silent " + pushData);
}
}
Related content
Android Receive Push Payload Details
Android Receive Push Payload Details
More like this
Handle Foreground Notification
Handle Foreground Notification
More like this
Disable and re enable Push Notifications
Disable and re enable Push Notifications
More like this
Using Opt In/Out in Android (Since SDK V2.0)
Using Opt In/Out in Android (Since SDK V2.0)
More like this
Deep - Linking
Deep - Linking
More like this
Log Out Device
Log Out Device
More like this