我正在尝试在我的应用程序中实施Firebase云消息传递,我已经实现了所有设置以使用此服务,但是当我尝试在我的课程中扩展FirebaseMessagingService
时,它会给我错误而且它无法解决找到它,我甚至不能import com.google.firebase.messaging.FirebaseMessagingService
,如图所示:
我添加了所有必需的代码: 我将此添加到app gradle
compile 'com.google.firebase:firebase-core:9.4.0'
apply plugin: 'com.google.gms.google-services'
这是模块gradle:
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>
我将google json文件添加到了应用中。 所以,如果有人可以帮助我,
答案 0 :(得分:34)
如果要使用消息传递,则必须添加消息传递模块。现在你只添加了核心模块。
所以继续并包括
compile 'com.google.firebase:firebase-messaging:9.4.0'
的底部找到