Unresolved Class ParseFirebaseInstanceIdService in AndroidManifest

前端 未结 2 890
太阳男子
太阳男子 2021-01-21 01:18

Context: Implementing Cloud Push Notifications on Android via Parse Server

as Backend and Firebase Cloud Messaging Service

2条回答
  •  鱼传尺愫
    2021-01-21 02:02

    FirebaseInstanceIdService is no longer usable. Use latest version of parse and FirebaseMessagingService

    implementation "com.github.parse-community.Parse-SDK-Android:fcm:1.21.0"
    

    And use ParseFirebaseMessagingService

    
        
            
        
    
    

提交回复
热议问题