본문 바로가기
IT/ERROR

Android resource mipmap/ic_launcher_foreground .. not found

by TechTonic 2022. 6. 30.
반응형

mipmap/ic_launcher_foreground not found 오류 내용

Android Icon 이미지를 변경하는데 아래 오류가 발생된다.

mipmap/ic_launcher_foreground not found 오류 코드

<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
    <background android:drawable="@color/ic_launcher_background"/>
    <foreground android:drawable="@mipmap/ic_launcher_foreground"/>
</adaptive-icon>
ERROR:D:\04.Android\Work\projectName\app\src\main\res\mipmap-anydpi-v26\ic_launcher.xml:4: 
AAPT: error: resource mipmap/ic_launcher_foreground (aka com.test.test:mipmap/ic_launcher_foreground) not found.

mipmap/ic_launcher_foreground not found 오류 내용

 

mipmap/ic_launcher_foreground not found 해결 방안

mipmap 폴더 내 이미지 파일 삭제 후 아이콘 이미지 재 생성하면 해결된다.

(New -> Image Asset 으로 생성)

반응형

댓글