I cannot load any project after updating Android Studio to version 2.3

I cannot load any project after updating Android Studio to version 2.3. Here is the error image:

image and he reads:

Cannot load project: com.intellij.ide.plugins.PluginManager$StartupAbortedException: com.intellij.diagnostic.PluginException: com/android/tools/idea/gradle/invoker/GradleInvoker$AfterGradleInvocationTask [Plugin: com.drakklord.gradle.metric.core] 

After I tried uninstalling the Checkstyle plugin and reinstalling Android Studio, I still get the same error. I upgraded the JDK version to version 1.8.

+8
java android android-studio
source share
2 answers

This is found in a similar topic:

• Close Android Studio

• Go to the directory home_dir / .AndroidStudio / system / cache

• Delete all files in the cache directory.

• Then restart IntelliJ / Android Studio

I would suggest making a backup of something before deleting.

+2
source share

After deleting the cached directory also, if it does not work, look at the terminal for an error.

If he says

 [ 96470] ERROR - llij.ide.plugins.PluginManager - null 

Then this is a problem with some plugins that you already installed in the IDE.

In my case, it was a BlackBerry Pugin for Android development. I just removed it from the plugins and it worked.

Click the plugins in the drop-down list at the bottom right and remove the plugin that you installed manually.

+12
source share

All Articles