Ashish Satpute
Ashish Satpute

Reputation: 755

Plugin incompatible with the new build found: Firebase Services

enter image description here

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 build found: Firebase Services."

Upvotes: 25

Views: 11405

Answers (6)

Sweta Jain
Sweta Jain

Reputation: 4314

Please follow these steps:

  1. Go to File -> Settings -> Plugins -> Search for Firebase.
  2. Uninstall the Firebase Plugin and click on Restart IDE.
  3. After restart, check for updates and you will not get that warning.

Upvotes: 0

Ashraf Gardizy
Ashraf Gardizy

Reputation: 389

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'
// ...

}

Upvotes: 0

Faran
Faran

Reputation: 59

Follow the Steps...

1) In PC go to -> Control Panel -> Uninstall Program -> find Android Studio -> Uninstall ANDROID STUDIO.. [NOTE] : After Clicking On Uninstall Button, it will give you options, Android Studio will be already Selected by Default..Do Not Uninstall User Settings ...It will Give You Benefit in Recovering you previous Settings.

2) You can Follow this Link [https://developer.android.com/studio] and Download Latest Version Of Android Studio 4.0.1 for Windows 64-bit -> which is (871 MB)

3) Open the Downloaded file and Install, after installation it will ask you for two options to select..Just Select Load Previous Settings..[DO NOT Load NEW SETTINGS]

4) Update Firebase Plugin

5) [[[Happy Coding]]]

Upvotes: 0

varun yadav
varun yadav

Reputation: 11

open build.gradle(:app) change testImplementation 'junit:junit:4.13' to 4.12

Upvotes: -1

Suraj Sahijwani
Suraj Sahijwani

Reputation: 121

Go to File -> Settings -> Plugins -> Update Firebase services plugin if update available or Disable the plugin for time being.

The warning will be gone and you can update the Android Studio!

After disabling the plugin, the warning is gone as shown in Image

Upvotes: 10

etodorov
etodorov

Reputation: 231

This is the Firebase Services for Android Studio plugin (https://plugins.jetbrains.com/plugin/12667-firebase-services), (already stated by the message). This does not prevent you from upgrading to the latest version of Android Studio, it just lets you know that this plugin that you have installed is not compatible with the new version. It shouldn't be such a problem, because you can continue using Firebase Services, you just won't be able to add Firebase Services through the assistant - https://firebase.google.com/docs/android/setup#assistant

Upvotes: 12

Related Questions