Android Studio 시작 에러(Corrupted Installation)

Published: by

Android Studio 시작 에러(Corrupted Installation)

에러 발생

Corrupted Installation 에러 팝업

안드로이드를 시작하려는데, 에러가 발생했다. 정확히는 에러 팝업이 뜨면서 안드로이드 스튜디오가 실행되지 않았다. 안드로이드 스튜디오의 스플래시 화면까지만 나오고 그 위에 에러 팝업이 발생했다. 에러 팝업의 내용은 아래와 같다.

Corrupted Installation // 손상된 설치

Missing essential plugin: // 필수 플러그인 누락
	org.jetbrains.android   // 실제로 누락된 플러그인
Please reinstall Android Studio from scratch. // 안스를 다시 설치하세요.

에러 원인

안스의 필수인 코틀린 플러그인을 Disable 한게 문제가 됐다. Disable 한게 누락됐다고 하며 안스 자체를 실행시키지 않는다.

에러 해결

안스의 disabled_plugins.txt를 편집하여 해결했다.

  • 파인더를 연다. disabled_plugins.txt가 있는 경로를 찾아들어간다.

  • Macintosh HD

    ㄴ 사용자

    ​ ㄴ jaeho

    ​ ㄴ 라이브러리 // 숨겨진 폴더이기 때문에 Shift + Command + . 을 눌러야 볼 수 있다.

    ​ ㄴ Application Support

    ​ ㄴ Google

    ​ ㄴ AndroidStudio4.x

    ​ ㄴ disabled_plugins.txt

  • disabled_plugins.txt 편집

androidx.compose.plugins.idea
...
org.jetbrains.kotlin // 이 부분을 삭제한다.

org.jetbrains.kotlin 은 Corrupted Installation 팝업에서 우리에게 알려준 누락된 플러그인이다. 누락시키지 않기 위해 disabled_plugins.txt 로부터 삭제한다.

터미널 경로

/Users/jaeho/Library/Application\ Support/Google/AndroidStudio4.2/disabled_update.txt

터미널에서 vim을 사용하여 편집한다면 위의 경로로 진입하면 된다.

이제 안스를 실행해보자 잘 되는 것을 확인할 수 있다.