Wou*_*ter 2 android firebase firebase-cloud-messaging
我在Android上使用Firebase云消息传递.
我的清单中有以下内容:
<service android:name=".MyFirebaseMessagingService">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT" />
</intent-filter>
</service>
<service android:name=".MyInstanceIdService">
<intent-filter>
<action android:name="com.google.firebase.INSTANCE_ID_EVENT" />
</intent-filter>
</service>
Run Code Online (Sandbox Code Playgroud)
这是文档有关扩展FirebaseMessagingService的内容:
如果您想要在后台接收应用程序通知之外的任何消息处理,则需要这样做.
除了在后台接收应用程序通知之外的消息处理,它们的含义还不完全清楚.我只能假设他们正在谈论在关闭应用程序时处理消息.
任何帮助将不胜感激.