我尝试在我的Android 6.0.1设备上运行GCM推送通知。不幸的是,我遇到了错误。 日志说:
E / FirebaseInstanceId:无法解析目标意图服务,无法跳过类名强制实施 E / FirebaseInstanceId:传递消息时出错:未找到ServiceIntent。
但我没有使用firebase。 那么为什么日志会说明有关firebase的内容以及为什么会发生这种错误呢?
我的AndroidManifest.xml文件:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.push.test">
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<permission android:name="com.push.test.permission.C2D_MESSAGE" android:protectionLevel="signature" />
<uses-permission android:name="com.push.test.permission.C2D_MESSAGE" />
<application
[...] >
<activity android:name=".MainActivity">
[...]
</activity>
<receiver
android:name="com.google.android.gms.gcm.GcmReceiver"
android:exported="true"
android:permission="com.google.android.c2dm.permission.SEND" >
<intent-filter android:priority="1000">
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<category android:name="com.push.test" />
</intent-filter>
</receiver>
<!-- [START gcm_listener] -->
<service
android:name=".GcmListener"
android:exported="false" >
<intent-filter android:priority="1000">
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
</intent-filter>
</service>
<!-- [END gcm_listener] -->
<!-- [START instanceId_listener] -->
<service
android:name=".InstanceListener"
android:exported="false">
<intent-filter>
<action android:name="com.google.android.gms.iid.InstanceID"/>
</intent-filter>
</service>
<!-- [END instanceId_listener] -->
<service
android:name=".RegistrationIntentService"
android:exported="false">
</service>
</application>
我的GCMListener.class文件:
public class GcmListener extends GcmListenerService {
@Override
public void onMessageReceived(String from, Bundle data) {
String message = data.getString("message");
if (from.startsWith("/topics/bewegung")) {
sendNotification(message);
}
}
[...]
google-service.json已位于/ app。
马文
[编辑:] 得到它了! 我在初次开始时注册了一个错误的主题。 现在它的工作完美。
答案 0 :(得分:-4)
您的清单中应该有这3项服务。你错过了一个动作 com.google.android.c2dm.intent.RECEIVE
<service
android:name="com.myapppackage.application.gcm.GcmIntentService"
android:exported="false">
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
</intent-filter>
</service>
<service
android:name="com.myapppackage.application.gcm.GcmIDListenerService"
android:exported="false">
<intent-filter>
<action android:name="com.google.android.gms.iid.InstanceID" />
</intent-filter>
</service>
<service
android:name="com.myapppackage.application.gcm.RegistrationIntentService"
android:exported="false"/>