isBatchPush

open fun isBatchPush(intent: Intent): Boolean

Check if the received push is a Batch one. If you have a custom push implementation into your app you should call this method before doing anything else into the onReceive method. If it returns true, you should not handle the push.

Return

true if the push is for Batch and you shouldn't handle it, false otherwise

Parameters

intent

Android's intent that hold the push


open fun isBatchPush(message: RemoteMessage): Boolean

Check if the received push is a Batch one. If you have a custom push implementation into your app you should call this method before doing anything else. If it returns true, you should not handle the push.

Return

true if the push is for Batch and you shouldn't handle it, false otherwise

Parameters

message

Firebase RemoteMessage