반응형
안드로이드 스튜디오 Installed Build Tools Revision 31.0.0 is corrupted 오류 해결 방법
새 컴퓨터에 안드로이드 스튜디오를 설치하고 빌드를 진행하니 아래와 같은 오류가 발생했다.
오류
Could not determine the dependencies of task ':app:compileDebugJavaWithJavac'.
> Installed Build Tools revision 31.0.0 is corrupted. Remove and install again using the SDK Manager.
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
해결방법
1. Toos > SDK Manager > SDK Tools
- Show Package Details 체크
- Android SDK Build-Tools 31 > 31.0.0, 30.0.3, 30.0.2 모드 체크 후 Apply
2. File > Project Structure > Modules
- app > Properties > Build Tools Version > 30.0.3 선택 후 Apply
- app > Default Config > Target SDK Version > 30 선택 후 OK
빌드 성공!
참고
반응형
'IT > 안드로이드+JAVA' 카테고리의 다른 글
[Android] getDrawable() deprecated (1) | 2021.10.06 |
---|---|
[Android] 앱, 패키지 설치 여부 확인 (App Install Check) (0) | 2021.09.11 |
[Android] 내부 저장소 경로 가져오기 (0) | 2021.05.04 |
[Android] Play스토어 앱 업로드 절차 (0) | 2021.03.11 |
[Android] AES256 암호화 복호화 (2가지 방법) (0) | 2021.01.24 |