Android 無法擴展 Firebase 訊息服務

2022-09-01 22:55:13

我正在尝试在我的应用程序中实现Firebase Cloud Messaging,我已经实现了使用此服务的所有设置,但是当我尝试在我的类中扩展时,它给我带来了错误,它根本找不到它,我甚至无法如图所示:FirebaseMessagingServiceimport com.google.firebase.messaging.FirebaseMessagingService

enter image description here

我已经添加了所有必需的代码:我将其添加到应用程序 gradle

compile 'com.google.firebase:firebase-core:9.4.0' 
apply plugin: 'com.google.gms.google-services'

和这个模块等级:

classpath 'com.google.gms:google-services:3.0.0'

这是清单代码:

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
    <activity android:name=".MainActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <service
        android:name=".MyFirebaseMessagingService">
        <intent-filter>
            <action android:name="com.google.firebase.MESSAGING_EVENT"/>
        </intent-filter>
    </service>
    <service
        android:name=".MyFirebaseInstanceIDService">
        <intent-filter>
            <action android:name="com.google.firebase.INSTANCE_ID_EVENT"/>
        </intent-filter>
    </service>
</application>

我已将谷歌json文件添加到应用程序中。所以如果有人能帮助我,请


答案 1

如果要使用消息传递,则必须添加消息传递模块。现在,您只添加了核心模块。

因此,请继续并包括

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

所有可用的模块都可以在 https://firebase.google.com/docs/android/setup 底部找到


答案 2

推荐