android manifest merger failed, gms play services / firebase

前端 未结 8 778
南笙
南笙 2020-12-14 02:03

I am trying to add firebase to my app using the firebaseUI. As the documentations says, I have used the corresponding gms:play-services (11.0.4) with the firebaseUI version

相关标签:
8条回答
  • 2020-12-14 02:33

    add this line at the end of app level gradle file

    apply plugin: 'com.google.gms.google-services'
    
    0 讨论(0)
  • 2020-12-14 02:35

    I was able to solve by hoovering over compile 'com.android.support:appcompat-v7:26.0.0' and adding the libraries manually that it said was wrong such as

    compile 'com.android.support:cardview-v7:26.0.0'
    compile 'com.android.support:animated-vector-drawable:26.0.0'
    compile 'com.android.support:customtabs:26.0.0'
    
    0 讨论(0)
提交回复
热议问题