java.lang.NoClassDefFoundError: com.google.firebase.FirebaseOptions

前端 未结 12 943
野的像风
野的像风 2020-12-05 04:32

I was getting this weird error on my google developer console. So i used google Cloud Test Lab to See whats really happening. turns out my app is failing on almost all devic

12条回答
  •  盖世英雄少女心
    2020-12-05 05:03

    I hope it's not too late. Firebase was causing trouble, so I excluded it. I just added this on the module gradle:

    configurations {
        all*.exclude group: 'com.google.firebase', module: 'firebase-common'
    }
    

提交回复
热议问题