# 앱 아이콘 설정 가이드 ## LS 타라유텍 로고를 앱 아이콘으로 설정하기 ### 방법 1: 온라인 도구 사용 (가장 쉬움) #### 1. Android Asset Studio 사용 1. https://romannurik.github.io/AndroidAssetStudio/icons-launcher.html 접속 2. LS 타라유텍 로고 이미지 업로드 3. 설정: - Shape: None (배경 투명) - Padding: 10% - Background Color: 흰색 또는 투명 4. **Download** 클릭 5. 다운로드한 zip 파일 압축 해제 6. 생성된 `mipmap-*` 폴더들을 `android/app/src/main/res/` 에 복사 #### 2. Icon Kitchen 사용 1. https://icon.kitchen/ 접속 2. LS 타라유텍 로고 업로드 3. **Android** 선택 4. 아이콘 스타일 조정 5. 다운로드 후 `android/app/src/main/res/` 에 복사 ### 방법 2: 수동으로 이미지 생성 LS 타라유텍 로고를 다음 크기로 준비해야 합니다: ``` android/app/src/main/res/ ├── mipmap-mdpi/ │ ├── ic_launcher.png (48x48) │ └── ic_launcher_round.png (48x48) ├── mipmap-hdpi/ │ ├── ic_launcher.png (72x72) │ └── ic_launcher_round.png (72x72) ├── mipmap-xhdpi/ │ ├── ic_launcher.png (96x96) │ └── ic_launcher_round.png (96x96) ├── mipmap-xxhdpi/ │ ├── ic_launcher.png (144x144) │ └── ic_launcher_round.png (144x144) └── mipmap-xxxhdpi/ ├── ic_launcher.png (192x192) └── ic_launcher_round.png (192x192) ``` ### 이미지 편집 도구 #### Photoshop / GIMP 1. LS 타라유텍 로고 열기 2. 각 크기로 리사이즈 3. PNG 형식으로 저장 4. 파일명: `ic_launcher.png`, `ic_launcher_round.png` #### 온라인 도구 - https://www.iloveimg.com/resize-image (이미지 리사이즈) - https://www.remove.bg/ (배경 제거) ### 빠른 설정 (임시) 현재 로고 이미지가 있다면: ```powershell # 프로젝트 루트에서 # 1. 로고 이미지를 logo.png로 저장 # 2. ImageMagick 설치 (Chocolatey 사용) choco install imagemagick -y # 3. 아이콘 생성 스크립트 실행 magick logo.png -resize 48x48 android/app/src/main/res/mipmap-mdpi/ic_launcher.png magick logo.png -resize 72x72 android/app/src/main/res/mipmap-hdpi/ic_launcher.png magick logo.png -resize 96x96 android/app/src/main/res/mipmap-xhdpi/ic_launcher.png magick logo.png -resize 144x144 android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png magick logo.png -resize 192x192 android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png # round 아이콘도 동일하게 magick logo.png -resize 48x48 android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png magick logo.png -resize 72x72 android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png magick logo.png -resize 96x96 android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png magick logo.png -resize 144x144 android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png magick logo.png -resize 192x192 android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png ``` ### 아이콘 없이 빌드하기 (임시) 아이콘이 준비되지 않았다면 AndroidManifest.xml에서 아이콘 참조를 제거: ```xml