I need the FCM service in my application, I cannot use the FirebaseMessagingService class, it says:
Error:(24, 8) error: zzaa(Intent) in FirebaseMessagingService cannot override zzaa(Intent) in zzb return type int is not compatible with Intent
here is my code
public class MyFirebaseMessagingService extends FirebaseMessagingService { @Override public void onMessageReceived(RemoteMessage remoteMessage) { sendNotification(remoteMessage.getData().get("message")); } private void sendNotification(String messageBody) {
I use this version of the compile 'com.google.firebase:firebase-messaging:9.2.0' library compile 'com.google.firebase:firebase-messaging:9.2.0'

user5543258
source share