public class

GliaFcmService

extends FirebaseMessagingService
java.lang.Object
   ↳ FirebaseMessagingService
     ↳ com.glia.androidsdk.fcm.GliaFcmService

Class Overview

Class which is intended to be registered in integrator's application if and only if integrator does not have any FCM services besides Glia's one. In that case integrator should declare this class in his app's manifest:

 <manifest xmlns:android="http://schemas.android.com/apk/res/android">
     <application ...>

         <service
              android:name="com.glia.androidsdk.fcm.GliaFcmService"
              android:exported="false">
              <intent-filter>
                  <action android:name="com.google.firebase.MESSAGING_EVENT" />
              </intent-filter>
         </service>

      </application>
 </manifest>
 
 

Summary

Public Constructors
GliaFcmService()
Public Methods
void onMessageReceived(RemoteMessage remoteMessage)
void onNewToken(String token)
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public GliaFcmService ()

Public Methods

public void onMessageReceived (RemoteMessage remoteMessage)

public void onNewToken (String token)