Push Notifications
Integrate your app with Referd push notifications and interactive in-app messaging.
Last updated
@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
if (GameBallApp.getInstance(this).isGameBallNotification(remoteMessage))
return;
// TODO: your code here
}override fun onMessageReceived(message: RemoteMessage) {
super.onMessageReceived(message)
if (GameBallApp.getInstance(this).isGameBallNotification(remoteMessage))
return
// TODO: your code here
}