Firebase Android SDK causing Gradle error (With no error cause)

前端 未结 4 1456
隐瞒了意图╮
隐瞒了意图╮ 2021-01-26 04:57

I am trying to use Firebase in my Android Studio project and it is giving me an empty Gradle error.

I have tried using the Firebase SDK with Gradle, as well as putting t

4条回答
  •  广开言路
    2021-01-26 05:16

    Have this content in your build.gradle (Module:app)

        android {
    
        //so default auto generated blocks will be here ...
    
            packagingOptions {
                exclude 'META-INF/LICENSE'
                exclude 'META-INF/LICENSE-FIREBASE.txt'
                exclude 'META-INF/NOTICE'
            }
    
        } // end of android node 
    
         dependencies {
                compile fileTree(dir: 'libs', include: ['*.jar'])
                compile 'com.android.support:appcompat-v7:22.0.0'
                compile 'com.android.support:support-v4:22.0.0'
                compile 'com.firebase:firebase-client-android:2.3.1'
            }
    

提交回复
热议问题