IDE : Android Studio 3.1.3
Can't process attribute android:fillColor="@android:color/darker_gray": references to other resources are not supported by build-time PNG generation
Vector Drawable 파일을 사용하였고, Color 값을 바꾸었을 때 위와 같이 Support 하지 못한다고 나왔다.
검색을 해보니 Drawable 에 SupportLibrary 관련 옵션을 활성화(true) 해주면 된다.
defaultConfig{
vectorDrawables.useSupportLibrary = true
}
반응형
'Dev > Android' 카테고리의 다른 글
Progressbar Library 모음 (0) | 2018.08.09 |
---|---|
과제로 진행한 Github User 찾기 프로젝트 (0) | 2018.08.07 |
Android Flash(light) 기능 사용 (0) | 2018.07.30 |
특정 Context 가 특정 Activity 의 Context 인지 확인하는 방법 (0) | 2018.07.03 |
onKeyDown() 함수와 onBackPressed() 함수 (0) | 2018.06.27 |