Android Studio is not Running After Disabling Dart and Kotlin plugins

Viewed 448

I tried to Disable Dart and Kotlin plugin from setting of Android Studio:

enter image description here

and after restarting its throwing error :

Missing essential plugin: org.jetbrains.android
please reinstall Android studio from scratch

is there any way to solve this problem without reinstalling?

enter image description here

1 Answers

Locate the disabled_plugins.txt file

Windows: C:\Users\YourUserName\AppData\Roaming\Google\AndroidStudioX.X\disabled_plugins.txt

macOS

~/Library/Application Support/Google/AndroidStudioX.X/studio.vmoptions

Linux

~/.config/Google/AndroidStudioX.X/studio64.vmoptions

Where X.X is your android studio version.

Delete the file or the offending line within the file.

Related