Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- BAEKJOON
- 알고리즘
- 동적계획법과최단거리역추적
- AndroidStudio
- 코딩테스트
- issue
- 안드로이드스튜디오
- 분할정복
- Flutter
- C++
- 개발
- 코드품앗이
- DFS와BFS
- vuejs
- codingtest
- cos pro
- 동적계획법
- cos
- 파이썬
- 백준
- android
- 코테
- 안드로이드
- Python
- Algorithm
- DFS
- DART
- django
- cos pro 1급
- Vue
Archives
- Today
- Total
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:05728x90
반응형
이슈
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
반응형
'TroubleShooting > Flutter Issue' 카테고리의 다른 글
Comments