모바일/오류 조치
-
[Android] Installed Build Tools revision 33.0.1 is corrupted. Remove and install again using the SDK Manager.모바일/오류 조치 2022. 11. 28. 15:15
Installed Build Tools revision 33.0.1 is corrupted. Remove and install again using the SDK Manager. 버전 상관 없이 빌드 중 "Installed Build Tools revision ~ is corrupted." 발생 했을 경우. 해결법 1. SDK Manager 혹은 설정 > Appearance & Behavior > System Settings > Android SDK 체크 박스 해제후 Apply를 하면 기존에 있던 Build Tool이 삭제되며 다시 설치 할 수 있습니다. 만약 해당 방법으로 안됐을 경우 Build Tool을 한단계 다운그레이드 할 경우 해결되기도 합니다. 해결법2. 그러나 저처럼 기존 프로젝트의 api ..
-
[Android] Build was configured to prefer settings repositories over project repositories but repository 'flatDir' was added by build file 'app/build.gradle' 해결법모바일/오류 조치 2022. 10. 18. 10:21
레거시 프로젝트 적용 중에 발생한 문제입니다. repositories { flatDir {dirs 'libs'} google() mavenCentral() jcenter() maven { url "https://maven.xyz.com" } } 위와 같은 코드를 app 단에 있는 build.gradle에 적용할 경우 아래와 같은 오류가 발생합니다. Build was configured to prefer settings repositories over project repositories but repository 'flatDir' was added by build file 'app/build.gradle' flatDir 뿐만 아니라 google, mavenCentral, jcetner 등에도 동일한 에러..