Android can't extend Firebase Messaging Service

前端 未结 1 1278
暖寄归人
暖寄归人 2021-01-07 17:55

I am trying to implement Firebase Cloud Messaging in my application, I had implemented all settings to use this service, but when I try to extend FirebaseMessagingServ

相关标签:
1条回答
  • 2021-01-07 18:36

    If you want to use messaging, you have to add the messaging module. Right now you only added the core module.

    So go ahead and include

    compile 'com.google.firebase:firebase-messaging:9.4.0'
    

    All the available modules can be found at the bottom of https://firebase.google.com/docs/android/setup

    0 讨论(0)
提交回复
热议问题