Unable to build apk, firebase_admob making Error

后端 未结 3 927
独厮守ぢ
独厮守ぢ 2021-01-21 18:34

I am trying to build apk but firebase admob is making problem, if I run without firebase_admob then apk works perfectly and built without any error how to resolve t

3条回答
  •  执笔经年
    2021-01-21 19:19

    Did you add the dependencies in Android/app/build.gradle?

    dependencies {
        testImplementation 'junit:junit:4.12'
        androidTestImplementation 'androidx.test:runner:1.1.0'
        androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0'
        api 'com.google.firebase:firebase-core:16.0.9'
        api 'com.google.firebase:firebase-ads:16.0.1'
    }
    

提交回复
热议问题