Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- log
- coroutines
- error
- Gradle
- 다윈
- Realm
- fabic
- LAYER_TYPE_SOFTWARE
- quick-start
- convert
- ethereum
- Hyperledger
- null safety
- Android
- C
- test
- fabric-sdk-java
- kotlin
- web3js
- vuepress
- 스트리밍
- Glide
- 컴파일
- dataginding
- Exception
- bigquery
- porterduff
- 안드로이드
- firebase
- hardwareacceleration
Archives
- Today
- Total
날마다 새롭게 또 날마다 새롭게
[Android] libpng error Not a PNG file 해결하기 (fail app:mergeDebugResources) 본문
프로그래밍/Android
[Android] libpng error Not a PNG file 해결하기 (fail app:mergeDebugResources)
아무유 2017. 7. 6. 10:21Execution failed for task ‘app:mergeDebugResources’
이클립스에서 안드로이드 스튜디오로 프로젝트 import 후, 빌드할 때 다음과 같은 에러가 발생할 수 있다.
Execution failed for task ':app:mergeDebugResources'.
...
libpng error: Not a PNG file
이클립스에서 프로젝트 빌드가 정상적으로 됐었는데 리소스 파일들을 하나하나 확인하려니 영 귀찮다.
gradle 에서 위와 같은 에러를 무시하는 옵션을 제공하고 있다.
build.gradle 파일에 다음과 같은 설정을 추가하면 된다.
android {
aaptOptions
{
cruncherEnabled = false
}
}
Comments