当前位置: 首页 > 知识库问答 >
问题:

ClassNotFoundException:在路径:DexPathList上没有找到类“com.google.android.gms.dynamic.zzf”

居和顺
2023-03-14
MobileAds.initialize(getApplicationContext(), "ca-app-pub-nnnnnnnnnnnnnnnnnnnnnnn");

在实现了库之后,我必须修改我的build.gradle并添加

defaultConfig {
 ...
 multiDexEnabled true
}

dataBinding {
 enabled = true
}

这些变化是否与错误有关?

共有1个答案

松飞翮
2023-03-14

我设法解决了这个问题。我在我的应用程序中实现了firebase,如下所示

compile 'com.google.firebase:firebase-ads:10.2.0'
compile 'com.google.firebase:firebase-invites:10.2.0'
compile 'com.google.firebase:firebase-crash:10.2.0'
compile 'com.google.firebase:firebase-storage:11.0.2'

这些依赖项之间的版本不匹配导致应用程序崩溃。将最后一个依赖项更改为

compile 'com.google.firebase:firebase-storage:10.2.0'

解决了我的问题。

 类似资料: