当应用程序在android中退出或关闭时,我可以调试服务

时间:2017-05-04 08:01:40

标签: android firebase android-service firebase-cloud-messaging

我正在使用FCM云消息来获取通知。在谷歌搜索时,我发现当应用程序处于后台状态或退出时,数据有效负载收到" onMessageReceived" FirebaseMessagingService服务的方法。

我的问题是,如何在应用程序关闭或退出(未运行)状态时调试服务。

如果我不能建议我检查服务流程的更好选择。

1 个答案:

答案 0 :(得分:1)

  1. 您可以使用Logcat记录Service中发生的事件以便了解。
  2. 示例:

    Log.d(TAG, "onStart()");

    1. 如果您想要专门调试,请按照@brat提到的文章进行操作。
    2. Debugging a service

      注意:确保您的Service在后​​台运行。