Как установить идентификатор канала уведомления Firebase в Android O?

Для уровня API 26 мы должны установить идентификатор канала в качестве ссылки. Я узнал, как это сделать без channelID, и ниже приведен мой код настройки обмена сообщениями firebase. Но теперь для нового уровня Android api 26

NotificationCompat.Builder(this);

Это не работает, и я должен добавить ссылку на channelID как

NotificationCompat.Builder(this, channelID);

Но я не знаю, как это сделать. Можете ли вы помочь мне понять, как создать идентификатор канала для обмена сообщениями в облаке Firebase?

AndroidManifest.xml

    <service android:name = ".MyFirebaseInstanceIdService">
        <intent-filter>
            <action android:name = "com.google.firebase.INSTANCE_ID_EVENT"></action>
        </intent-filter>
    </service>

    <service android:name = ".MyFirebaseMessagingService">
        <intent-filter>
            <action android:name = "com.google.firebase.MESSAGING_EVENT"></action>
        </intent-filter>
    </service>

MyFirebaseInstanceIdService Java-класс:

import android.util.Log;
import com.google.firebase.iid.FirebaseInstanceId;
import com.google.firebase.iid.FirebaseInstanceIdService;

public class MyFirebaseInstanceIdService extends FirebaseInstanceIdService {

    private static final String REG_TOKEN = "REG_TOKEN";

    @Override
    public void onTokenRefresh() {
        String recent_token = FirebaseInstanceId.getInstance().getToken();
        Log.d(REG_TOKEN, recent_token);
    }
}

MyFirebaseMessagingService Java-класс

import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.support.v4.app.NotificationCompat;

import com.google.firebase.messaging.FirebaseMessagingService;
import com.google.firebase.messaging.RemoteMessage;

public class MyFirebaseMessagingService extends FirebaseMessagingService {

    @Override
    public void onMessageReceived(RemoteMessage remoteMessage) {

        Intent intent = new Intent(this, MainActivity.class);
        intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
        PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, PendingIntent.FLAG_ONE_SHOT);

        // Here I will set up a channel ID as "CH_ID_1" but I do not know how to do this.
        NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this, "CH_ID_1");
        //****************************************************

        notificationBuilder.setContentTitle("FCM NOTIFICATION");
        notificationBuilder.setContentText(remoteMessage.getNotification().getBody());
        notificationBuilder.setAutoCancel(true);
        notificationBuilder.setSmallIcon(R.mipmap.ic_launcher);
        notificationBuilder.setContentIntent(pendingIntent);
        NotificationManager notificationManager = (NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);
        notificationManager.notify(0, notificationBuilder.build());

    }
}

Gradle - Зависимости

dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation 'com.android.support:appcompat-v7:26.1.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.0'
    implementation 'com.android.support:design:26.1.0'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    implementation 'com.google.firebase:firebase-core:16.0.0'
    implementation 'com.google.firebase:firebase-messaging:17.0.0'
}
apply plugin: 'com.google.gms.google-services'
Интеграция Angular - Firebase Analytics
Интеграция Angular - Firebase Analytics
Узнайте, как настроить Firebase Analytics и отслеживать поведение пользователей в вашем приложении Angular.
0
0
1 037
1
Перейти к ответу Данный вопрос помечен как решенный

Ответы 1

Ответ принят как подходящий

То, что я делал раньше в приложении, - это инициализация каналов уведомлений при запуске приложения. Поэтому я добавил функцию init в свой класс Application, например:

    @TargetApi(Build.VERSION_CODES.O)
    private void initNotificationChannels() {
        NotificationChannel publicChannel = new NotificationChannel(
                Constants.NOTIFICATION_CHANNEL_PUBLIC,
                Constants.NOTIFICATION_CHANNEL_PUBLIC,
                NotificationManager.IMPORTANCE_DEFAULT);
        publicChannel.setDescription(Constants.NOTIFICATION_CHANNEL_PUBLIC);

        NotificationChannel topicChannel = new NotificationChannel(
                Constants.NOTIFICATION_CHANNEL_TOPIC,
                Constants.NOTIFICATION_CHANNEL_TOPIC,
                NotificationManager.IMPORTANCE_DEFAULT);
        topicChannel.setDescription(Constants.NOTIFICATION_CHANNEL_TOPIC);

        NotificationChannel privateChannel = new NotificationChannel(
                Constants.NOTIFICATION_CHANNEL_PRIVATE,
                Constants.NOTIFICATION_CHANNEL_PRIVATE,
                NotificationManager.IMPORTANCE_HIGH);
        privateChannel.setDescription(Constants.NOTIFICATION_CHANNEL_PRIVATE);
        privateChannel.canShowBadge();

        List<NotificationChannel> notificationChannels = new ArrayList<>();
        notificationChannels.add(publicChannel);
        notificationChannels.add(topicChannel);
        notificationChannels.add(privateChannel);

        NotificationManager mNotificationManager =
                (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
        if (mNotificationManager != null) {
            mNotificationManager.createNotificationChannels(notificationChannels);
        }
    }

Затем в моем FirebaseMessagingService я сделал функцию, которая получает channelId при создании уведомлений:

    private String getChannelId(String source) {
        if (!TextUtils.isEmpty(source)) {
            if (source.contains(Constants.TOPIC_PREFIX)) {
                return (TextUtils.equals((TOPIC_PREFIX + Constants.NOTIFICATION_CHANNEL_PUBLIC), source)) ?
                        Constants.NOTIFICATION_CHANNEL_PUBLIC : Constants.NOTIFICATION_CHANNEL_TOPIC;
            } else {
                return Constants.NOTIFICATION_CHANNEL_PRIVATE;
            }
        } else {
            return Constants.NOTIFICATION_CHANNEL_PUBLIC;
        }
    }

Это обслуживает три типа уведомлений, которые нужны нашему приложению: общедоступные, тематические и частные. Вы можете самостоятельно указать нужные вам каналы.

Что вы отправляете в качестве параметра "источник" методу getChannelId?

Rafols 27.06.2018 13:28

@Rafols Ценность remoteMessage.getFrom()

AL. 27.06.2018 14:18

Другие вопросы по теме