陆小鸡
陆小鸡

Reputation: 99

Android Studio Fatal error initializing 'com.intellij.util.net.ssl.CertificateManager'

This problem occurred when I upgraded Android Studio 3.0 to 3.1: java.lang.RuntimeException: com.intellij.ide.plugins.PluginManager $ StartupAbortedException: Fatal error initializing 'com.intellij.util.net.ssl.CertificateManager' What caused this, how to solve this problem yet The details of the problem are below:

error1

Upvotes: 2

Views: 2124

Answers (6)

sagar.android
sagar.android

Reputation: 1870

As the exception occurred by uninstalling any plugin from plugin manager, that means you have just uninstalled any plugin. But in such case, plugin not fully uninstalled from android studio config.

So you need to delete that folder.

First goto task manager of the system, end task android studio if not ended.

Then goto installation folder USER/.AndroidStudioX.X/config/plugins, Now check that any folder regarding your uninstalled plugin. Delete that folder. Now start the android studio.

Works in my case.

Upvotes: 1

Andrew Glukhoff
Andrew Glukhoff

Reputation: 916

Perhaps deleting last installed plugin would help. Path: C:\Users{username}}{AndroidStudio Version}\config\plugins\ . In my case - could get launch after deleting Hoi4.jar , avaliables.xml, availables_etag. (https://issuetracker.google.com/u/1/issues/112016425)

Upvotes: 1

Fordo Alexandera
Fordo Alexandera

Reputation: 51

Solved this problem.

For me, all above methods are useless.

Then I guess maybe the plugin installed newly cause the error .

I empty the plugins at the directory of"C:\Users....AndroidStudio\config\plugins" and it work normally.

Upvotes: 2

I fixed that by:

1) Downloading Java Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy Files 7

2) Unzip the files in Android Studio\jre\jre\lib\security

3) Run Android Studio :)

Upvotes: 4

Nipuna Rajapaksha
Nipuna Rajapaksha

Reputation: 57

Update the IDE tools. It worked for me. The Android SDK Manager helps you download the tools. To open the SDK Manager from Android Studio, click Tools > Android > SDK Manager or click SDK Manager in the toolbar.

Here is the link for reference

Upvotes: -2

Chief Madog
Chief Madog

Reputation: 1507

1. Try to delete IDE system folder > https://intellij-support.jetbrains.com/hc/articles/206544519

2. Reinstall > http://www.jetbrains.com/idea/download/index.html.

check if that helps

Upvotes: 2

Related Questions