반응형
개요
execution failed for task ':app:processDebugResources'
안드로이드 에서 이런 오류가 나올 중 일부 경우에 대해서 짧게 기록해둡니다.
본문
app/build.gradle 파일을 열어보면
buildToolsVersion "23.0.3"
이런 값이 있습니다. 이 버전이 맞지 않아서 발생하는 오류라고 합니다. 최신에 맞춰서 바꾸면 됩니다. 해당 부분에서 Ctrl + F1 을 눌러보면, 몇 버전으로 바꿔야 하는지 설명이 나옵니다. 그에 따라서 변경을 해주면 됩니다.
추가
buildToolsVersion 을 변경하면, 컴파일 전체적으로 영향을 받으니 변경시 주의할 필요가 있습니다.
참고한 링크는 다음과 같습니다.
- http://stackoverflow.com/questions/20737200/execution-failed-appprocessdebugresources-android-studio
반응형
'개발 > Android' 카테고리의 다른 글
[Android Studio] 모듈 콘솔 디버깅 한글 깨짐 증상 (0) | 2017.11.16 |
---|---|
[Android Studio] Inspection Typo Scope 설정 (0) | 2017.11.15 |
[안드로이드 Android] .AndroidStudio2.1 폴더 (0) | 2017.11.12 |
[Android] (error) buildtypes cannot be applied to groovy.lang.closure (0) | 2016.06.17 |
[Android Studio] vmoptions 위치 (0) | 2016.05.13 |
[Android] E/ViewRootImpl: sendUserActionEvent() mView == null (0) | 2016.05.01 |
[Android] textScaleX (0) | 2016.04.27 |
[Android] Fragment 에서 getActivity() (0) | 2016.04.27 |