Plugin incompatible with the new build found: Firebase Services

前端 未结 5 1363
北海茫月
北海茫月 2021-02-18 13:30

I am not able to update to Android Studio 4.0

When I check for updates, it is showing me the below message.

\"Plugin incompatible with the new b

5条回答
  •  独厮守ぢ
    2021-02-18 14:25

    Android Application Connection problem with Firebase Solved

    If you have connection problem with Firebase database when you click on connect option within android studio, please add google-service API in your build.gradle. As part of enabling Google APIs or Firebase services in your Android application you may have to add the google-services plugin to your build.gradle (Project Level) file:

    dependencies {
    classpath 'com.google.gms:google-services:4.3.4'
    // ...
    

    }

提交回复
热议问题