FirebaseMessagingService onMessageReceived()未执行

时间:2019-09-23 09:29:12

标签: java android firebase-cloud-messaging

我刚开始使用Firebase Cloud Messaging,并在清单中设置了所有依赖项,Firebase服务以及它的服务标签。

从控制台发送消息时,检测到目标用户,但该应用程序未收到通知。 所以我在onMessageReceived()上设置了一个断点。但是它没有被激发。

下面是我的Firebase Messaging服务

public class MyFirebaseMessagingService extends FirebaseMessagingService {
private static final String TAG = "MyFirebaseMessagingServ";

@Override
public void onMessageReceived( RemoteMessage remoteMessage) {
    super.onMessageReceived(remoteMessage);
    String notificationBody = "";
    String notificationTitle = "";
    String notificationData = "";

    try{

        notificationData = remoteMessage.getData().toString();
        notificationTitle = remoteMessage.getNotification().getTitle();
        notificationBody = remoteMessage.getNotification().getBody();

    }
    catch (NullPointerException e){
        Log.e(TAG, "onMessageReceived: NullPointerException: " + e.getMessage() );

    }

    NotificationHelper.displayNotification(getApplicationContext(), notificationTitle, 
    notificationBody);
    Log.d(TAG, "onMessageReceived: data: " + notificationData);
    Log.d(TAG, "onMessageReceived: Notification body : " + notificationBody);
    Log.d(TAG, "onMessageReceived: notification title: " + notificationTitle);
}

Android清单

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.sys.systec">

<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.CAMERA"/>

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/AppTheme"
    tools:ignore="GoogleAppIndexingWarning">



    <activity android:name=".LoginActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN"/>

            <category android:name="android.intent.category.LAUNCHER"/>
        </intent-filter>
    </activity>
   ...

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

</application>

1 个答案:

答案 0 :(得分:0)

if you are using firebase terminal you will face the issue so you can use notification API (use data message)

API:

https://fcm.googleapis.com/fcm/send

标题:

"Content-Type": "application/json",
"Authorization": "key=<Server_key>"

身体:

{
    "to": "<Device FCM token>",
    "notification": {
      "title": "Demo tittle",
      "body": "Demo body",
      "mutable_content": true,
      },

   "data": {
    "url": "<media image url>",
    "dl": "<deeplink action>"
      }
}

引用:

URL:https://firebase.google.com/docs/cloud-messaging/http-server-refhttps://firebase.google.com/docs/cloud-messaging/downstream