Development Artist

[Flutter, Issue] FAILURE: Build failed with an exception. Execution failed for task ':app:processDebugResources'. Android resource linking failed. AAPT: error: resource mipmap/ic_launcher 본문

TroubleShooting/Flutter Issue

[Flutter, Issue] FAILURE: Build failed with an exception. Execution failed for task ':app:processDebugResources'. Android resource linking failed. AAPT: error: resource mipmap/ic_launcher

JMcunst 2022. 1. 18. 22:05
728x90
반응형

이슈

1. build 중 다음과 같은 이슈가 발생. 안드로이드 resource가 없다고 말하고 있는 것으로 보인다.


해결

1. android>app>src>main>res>mipmap~ 에 ic_launcher가 있는지 확인한다. 

2. 없다면, ic_launcher 이미지를 mipmap~에 넣어준다.

3. 또는, Android>app>src>main>AndroidManifest.xml의 android:icon="@mipmap/ic_launcher" 를 사용하고자 하는 다른 resource명(이미지 명)으로 바꿔준다.  


원인 

1. ic_launcher가 없다고 알려주고 있다. Android>app>src>main>AndroidManifest.xml에 가보면 ic_launcher가 있는데, 해당 resource를 아이콘을 바꾼다고 지웠었다. ic_launcher는 흔히 default resource로 프로젝트를 만들면 생성되는 녀석이다. 아이콘을 새로운 것으로 바꾸어 주었는데, 그 과정에서 ic_launcher를 지웠다. 그리고 파일명을 다르게 해놓아서 다음과 같이 에러를 뱉고 있었다.

 

728x90
반응형
Comments