我已经检查了很多答案,但它们都不起作用。我只想创建简单的推送通知应用程序。首先,我创建了单个设备,当我创建了一个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());
    }
}发布于 2019-11-23 21:54:28
错误可以总结为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已添加(并添加了此类),但它很旧或很新,因此与您的代码不兼容。- Make sure you add firebase messaging to the project://如果未知实现"com.google.firebase:firebase-messaging:+“// 18.0.0或20.0.0,则使用编译而不是实现
- If your code is old (copied from an ancient post blog), add a lower `firebase-messaging` library version. Else if your code is new and your `firebase-messaging` is old, try upgrading the library version.
有关firebase release notes的更多信息。
发布于 2021-07-19 04:54:50
在我的例子中,这个问题已经通过添加以下依赖项得到了修复:
implementation "androidx.legacy:legacy-support-core-utils:1.0.0"我偶然发现了这个解决方案。如果不起作用,请给我反馈来编辑/删除我的帖子。
https://stackoverflow.com/questions/59007606
复制相似问题