を使用するときに、「戻り値の型intがテントと互換性がありません」私はFirebaseMessagingServiceクラスを使用することはできません、私のアプリケーションでFCMサービスを必要とする、それは言う:ここエラーFirebaseMessagingServiceクラス
Error:(24, 8) error: zzaa(Intent) in FirebaseMessagingService cannot override zzaa(Intent) in zzb return type int is not compatible with Intent
は私のコード
です私はこのライブラリのバージョンを使用していpublic class MyFirebaseMessagingService extends FirebaseMessagingService {
@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
sendNotification(remoteMessage.getData().get("message"));
}
private void sendNotification(String messageBody) {
//
}
}
compile 'com.google.firebase:firebase-messaging:9.2.0'
同じ問題がある –