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
open build.gradle(:app) change testImplementation 'junit:junit:4.13' to 4.12
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]]]
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
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
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'
// ...
}