java - 无法实例化接收器 com.google.firebase.iid.FirebaseInstanceIdReceiver : java. lang.ClassNotFoundException:

标签 java android firebase firebase-console android-push-notification

我检查了很多答案,但没有用。我只想创建简单的推送通知应用程序。首先,当我制作一个 apk 并尝试在多个设备上发送通知时,我为单个设备创建了它开始崩溃。

public class MyFirebaseMessagingService extends FirebaseMessagingService {

    String TAG ="MALIK";

    @Override
    public void onMessageReceived(RemoteMessage remoteMessage) {
        // ...
        sendNotification(remoteMessage.getNotification().getBody());
        // TODO(developer): Handle FCM messages here.
        Log.d(TAG, "From: " + remoteMessage.getFrom());

        // Check if message contains a data payload.
        if (remoteMessage.getData().size() > 0) {
            Log.d(TAG, "Message data payload: " + remoteMessage.getData());

            if (/* Check if data needs to be processed by long-running job */ true) {
                // For long-running tasks (10 seconds or more) use Firebase Job Dispatcher.

            } else {
                // Handle message within 10 seconds

            }

        }

        // Check if message contains a notification payload.
        if (remoteMessage.getNotification() != null) {
            Log.d(TAG, "Message Notification Body: " + remoteMessage.getNotification().getBody());
            sendNotification(remoteMessage.getNotification().getBody());
        }

        // Also if you intend on generating your own notifications as a result of a received FCM
        // message, here is where that should be initiated. See sendNotification method below.
    }

    @Override
    public void onNewToken(String token) {

        Log.d(TAG, "Refreshed token: " + token);

        // If you want to send messages to this application instance or
        // manage this apps subscriptions on the server side, send the
        // Instance ID token to your app server.

    }

    private void sendNotification(String messageBody) {
        Intent intent = new Intent(this, MainActivity.class);
        intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
        PendingIntent pendingIntent = PendingIntent.getActivity(this, 0 /* Request code */, intent,
                PendingIntent.FLAG_ONE_SHOT);

        String channelId = getString(R.string.default_notification_channel_id);
        Uri defaultSoundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
        NotificationCompat.Builder notificationBuilder =
                new NotificationCompat.Builder(this, channelId)
                        .setSmallIcon(R.drawable.ic_launcher_background)
                        .setContentTitle(getString(R.string.fcm_message))
                        .setContentText(messageBody)
                        .setAutoCancel(true)
                        .setSound(defaultSoundUri)
                        .setContentIntent(pendingIntent);

        NotificationManager notificationManager =
                (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);

        // Since android Oreo notification channel is needed.
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
            NotificationChannel channel = new NotificationChannel(channelId,
                    "Channel human readable title",
                    NotificationManager.IMPORTANCE_DEFAULT);
            notificationManager.createNotificationChannel(channel);
        }

        notificationManager.notify(0 /* ID of notification */, notificationBuilder.build());
    }
}

最佳答案

错误可以概括为ClassNotFoundException

这意味着调用不在类路径中的类的代码。 该问题可能是因为:

  • 需要添加库 Firebase-iid

    • // use compile instead of implementation if it's unknown
      implementation "com.google.firebase:firebase-iid:+" // 18.0.0 or 20.0.0
      
  • firebase-messaging 已添加(也添加了此类),但它非常旧或非常新,因此与您的代码不兼容。

    • 确保将 Firebase 消息传递添加到项目中:
    // use compile instead of implementation if it's unknown
    implementation "com.google.firebase:firebase-messaging:+" // 18.0.0 or 20.0.0
    
    • 如果您的代码较旧(从古代博客复制),请添加较低的 firebase-messaging 库版本。否则,如果您的代码是新的,而 firebase-messaging 是旧的,请尝试升级库版本。

有关 firebase release notes 的更多信息.

关于java - 无法实例化接收器 com.google.firebase.iid.FirebaseInstanceIdReceiver : java. lang.ClassNotFoundException:,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59007606/

相关文章:

java - 无法创建新 session 原始错误:com. xxx.xxx/view.activity.ActivityStart从未启动

android - 如何同时播放/流式传输视频并将其保存到应用程序缓存?

java - 二维数组约束 : Sudoku

Java JTable 如何在按下回车键时将焦点从编辑模式下的当前单元格转移到下一个单元格

android - 移植后无法在 android 代码中找到 BB10 操作系统版本

android - 将进度对话框保持在顶部

ios - 如何修复 UITableView 类,该类在 Firebase 数据库上重复读取两次元素,并且在加载时表为空?

javascript - 如何处理带有条件分支的 TypeScript Promise?

firebase - 当数据库中发生时间事件时如何发送 FCM?

java - JavaFX 3D 中的可见光源