java.lang.noclassdeffounderror在实现firebase云消息时出错

7vhp5slm  于 2021-06-30  发布在  Java
关注(0)|答案(1)|浏览(578)

我正在使用firebase云消息传递实现推送通知,为此,我在androidmanifest.xml文件中添加了以下代码

<!--FCM RECEIVER-->
<receiver
  android:name="com.google.firebase.iid.FirebaseInstanceIdInternalReceiver"
  android:exported="false"/>
<receiver
  android:name="com.google.firebase.iid.FirebaseInstanceIdReceiver"
  android:exported="true"
  android:permission="com.google.android.c2dm.permission.SEND">

  <intent-filter>
    <action android:name="com.google.android.c2dm.intent.RECEIVE"/>
    <action android:name="com.google.android.c2dm.intent.REGISTRATION"/>
    <category android:name="${applicationId}"/>
  </intent-filter>    
</receiver>
<!---FCM RECEIVER ENDS HERE-->

但当我尝试运行应用程序时,它甚至在启动活动之前就抛出了应用程序

Java.Lang.NoClassDefFoundError: 'Failed resolution of: Lcom/google/android/datatransport/runtime/dagger/internal/Factory;'

顺便说一句,我为这个功能安装了两个nuget包:
xamarin.googleplayservices.base网站
xamarin.firebase.messaging消息
我试过:
删除bin和obj文件夹并再次生成解决方案
将所有相同的家族掘金包更新到同一版本

dxpyg8gm

dxpyg8gm1#

安装xamarin.google.dagger包为我解决了这个问题。

相关问题