Push Notifications
Integrate your app with Gameball push notifications and interactive in-app messaging.
Gameball uses Firebase to deliver maximum experience in your app. This includes push notifications, interactive in-app messaging.
.png?alt=media&token=7abdfacb-f390-472a-94d5-9ca1d87b9374)
Before you start, you must configure your Firebase on your Gameball account. Follow the steps in Configure your Firebase account on Gameball for mobile push notifications article from our Help Center related to push notifications.
Add the following code line to the first line of the onMessageReceived method in your FirebaseMessagingService class.
Java
Kotlin
@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
}
Your users can now receive push notifications from Gameball.
Last modified 29d ago