gpt4 book ai didi

Android FCM 与 Azure 通知中心错误 FirebaseInstanceId

转载 作者:行者123 更新时间:2023-12-03 04:29:30 26 4
gpt4 key购买 nike

通知工作正常,我看到了消息,但当我收到通知时,我收到了 2 条错误消息:

E/FirebaseInstanceId: Failed to resolve target intent service, skipping classname enforcement
E/FirebaseInstanceId: Error while delivering the message: ServiceIntent not found.

list

  <application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
tools:replace="android:icon"
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>

<meta-data android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />

<service
android:name=".MyInstanceIDListenerService">
<intent-filter>
<action android:name="com.google.firebase.INSTANCE_ID_EVENT" />
</intent-filter>
</service>

<receiver android:name="com.microsoft.windowsazure.notifications.NotificationsBroadcastReceiver"
android:permission="com.google.android.c2dm.permission.SEND">
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<category android:name="com.example.xxx.notificationandriodfcm" />
</intent-filter>
</receiver>

</application>

<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.GET_ACCOUNTS"/>
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />

取决于:

 compile 'com.google.android.gms:play-services-gcm:9.2.1'
compile 'com.microsoft.azure:notification-hubs-android-sdk:0.4@aar'
compile 'com.microsoft.azure:azure-notifications-handler:1.0.1@aar'

repositories {
maven {
url "http://dl.bintray.com/microsoftazuremobile/SDK"
}
}


apply plugin: 'com.google.gms.google-services'

我基于本教程编写了代码:

https://azure.microsoft.com/en-us/documentation/articles/notification-hubs-android-push-notification-google-fcm-get-started/

知道可能出了什么问题吗?我该怎么办?

最佳答案

如果您完全确定 list 正确,则您可能遇到了 Android 错误 Google is working on to fixing now 。如果您可以可靠地重现该问题,请在帖子中告知他们。

但在此之前,请先查看 this answer看看是否有帮助。

此外,如果可以的话,请尝试在其他设备或模拟器版本上运行该应用。如果您在其他设备上没有看到错误消息,则可能是您最初遇到了该错误。如果您仍然看到它们,那么很可能是某种通用问题。试试searching for a solution .

关于Android FCM 与 Azure 通知中心错误 FirebaseInstanceId,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38928264/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com