android : Error converting byte to dex

后端 未结 30 1713
鱼传尺愫
鱼传尺愫 2020-12-01 10:25

So, I am getting the following error while running the project after upgrading build.gradle (Project) from

dependencies {
        classpath \'com.android.too         


        
30条回答
  •  南方客
    南方客 (楼主)
    2020-12-01 10:41

    Check you build.gradle (Module: your app).

    All com.google.android.gms libraries must use the exact same version specification (mixing versions can lead to runtime crashes).

    For example: If you have com.google.firebase:firebase-ads:9.6.1 and com.google.android.gms:play-services-basement:10.0.1

    You have to change the firebase version to: 10.0.1

提交回复
热议问题