FCM有时不会收到推送通知,有时会在Android上接收推送通知

时间:2018-02-01 07:12:17

标签: android push-notification firebase-cloud-messaging android-6.0-marshmallow android-7.0-nougat

我在FCM Android上遇到了问题。有时不会收到推送通知。我已经将代码放在Google的教程中,但我的应用程序无效。

我已经把它放在清单文件

上了
    <service
        android:name=".fcm.MyFcmListenerService"
        android:enabled="true"
        android:exported="false">
        <intent-filter>
            <action android:name="com.google.firebase.MESSAGING_EVENT" />
        </intent-filter>
    </service>

然后添加了这个

    <service
        android:name=".fcm.MyInstanceIDListenerService"
        android:enabled="true"
        android:exported="false">
        <intent-filter>
            <action android:name="com.google.firebase.INSTANCE_ID_EVENT"/>
        </intent-filter>
    </service>

0 个答案:

没有答案