Отправка push-уведомлений с консоли Firebase - PullRequest
0 голосов
/ 13 декабря 2018

Я хотел бы отправлять уведомления пользователям моего приложения из firebase, но когда я составляю сообщение в консоли firebase и не отправляю уведомление, пользователь не получает уведомление.Как я могу это сделать, пожалуйста?

вот что у меня есть в моей MainActivity

if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) {
        NotificationManager mNotificationManager =
                (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
        int importance = NotificationManager.IMPORTANCE_HIGH;
        NotificationChannel mChannel = new NotificationChannel(Constants.CHANNEL_ID, Constants.CHANNEL_NAME, importance);
        mChannel.setDescription(Constants.CHANNEL_DESCRIPTION);
        mChannel.enableLights(true);
        mChannel.setLightColor(Color.RED);
        mChannel.enableVibration(true);
        mChannel.setVibrationPattern(new long[]{100, 200, 300, 400, 500, 400, 300, 200, 400});
        mNotificationManager.createNotificationChannel(mChannel);
    }

, то есть мой NotificationManager

public class MyNotificationManager {
private Context mCtx;
private static MyNotificationManager mInstance;

private MyNotificationManager(Context context) {
    mCtx = context;
}

public static synchronized MyNotificationManager getInstance(Context context) {
    if (mInstance == null) {
        mInstance = new MyNotificationManager(context);
    }
    return mInstance;
}

public void displayNotification(String title, String body) {

    NotificationCompat.Builder mBuilder =
            new NotificationCompat.Builder(mCtx, Constants.CHANNEL_ID)
                    .setSmallIcon(R.mipmap.ic_yafe)
                    .setContentTitle(title)
                    .setContentText(body);
    Intent resultIntent = new Intent(mCtx, MainActivity.class);

    PendingIntent pendingIntent = PendingIntent.getActivity(mCtx, 0, resultIntent, PendingIntent.FLAG_UPDATE_CURRENT);
    mBuilder.setContentIntent(pendingIntent);
    NotificationManager mNotifyMgr =
            (NotificationManager) mCtx.getSystemService(NOTIFICATION_SERVICE);
    if (mNotifyMgr != null) {
        mNotifyMgr.notify(1, mBuilder.build());
    }
}
}
...