Dev/Flutter

[Flutter] AAPT: error: failed to read PNG signature: file does not start with PNG signature.

healthyryu 2023. 6. 28. 16:26
> A failure occurred while executing com.android.build.gradle.internal.res.Aapt2CompileRunnable
   > Android resource compilation failed
     ERROR:/Users/.../android/app/src/main/res/drawable/app_icon.png: AAPT: error: failed to read PNG signature: file does not start with PNG signature.
     ERROR:/Users/.../android/app/src/main/res/drawable/app_icon.png: AAPT: error: file failed to compile.

아이콘으로 쓸 app_icon 이미지가 png 확장자라고 되어있지만 실제로는 PNG 타입이 아니여서 발생한 문제

PNG 파일을 가져오던 다시 컨버팅해서 PNG 로 바꿔서 대체해주면 된다.

 

 

 

반응형