[DESIGN] 앱 아이콘 및 스플래시 리소스 정리#85
Merged
Merged
Conversation
minsoo0506
approved these changes
Jun 1, 2026
minsoo0506
left a comment
There was a problem hiding this comment.
넵 확인했습니다!! 문제 없는 것 같아서 바로 머지 하셔도 될 것 같습니다!!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #55
개요
앱 빌드 시 사용되는 LinClean 앱 아이콘, Android adaptive icon, 웹 favicon, splash 이미지를 실제 서비스 브랜딩에 맞게 정리했습니다.
기존에는 일부 아이콘 리소스가 Expo 기본 템플릿 이미지이거나, Android adaptive icon에서 마스크 처리 시 잘릴 수 있는 형태로 남아 있었습니다. 이번 작업에서는
app.json에서 참조하는 앱 아이콘 리소스를 기준으로 assets 이미지를 점검하고, 필요한 이미지 파일만 유지하도록 정리했습니다.또한 현재 코드에서 더 이상 사용하지 않는 Expo 템플릿 이미지와 미사용 폴더 아이콘을 삭제하고, README의 assets 설명도 실제 파일 구성에 맞게 수정했습니다.
주요 구현 내용
icon.png갱신android-icon-background.png갱신splash-icon.png갱신파일별 역할
app.json: 앱 아이콘, Android adaptive icon, favicon, splash 이미지 참조 설정assets/images/icon.png: iOS 및 기본 앱 아이콘assets/images/android-icon-background.png: Android adaptive icon 배경 이미지assets/images/android-icon-foreground.png: Android adaptive icon foreground 이미지assets/images/android-icon-monochrome.png: Android 13+ themed icon용 monochrome 이미지assets/images/favicon.png: 웹 favicon 이미지assets/images/splash-icon.png: splash 화면 이미지app/(tabs)/(explore)/index.tsx: 삭제된 React 로고 이미지 참조 제거README.md: 현재 유지 중인 assets 목록 기준으로 문서 수정삭제한 에셋
assets/images/partial-react-logo.pngassets/images/folder_active.pngassets/images/folder_unactive.pngassets/images/react-logo.pngassets/images/react-logo@2x.pngassets/images/react-logo@3x.png해결한 이슈 목록
app.json에서 실제 참조하는 앱 아이콘, adaptive icon, favicon, splash 이미지 확인assets/images에 필요한 이미지 리소스만 남도록 정리체크 사항
참고
Android native 리소스(
android/app/src/main/res) 반영은 이번 PR 범위에서 제외했습니다.현재는
assets와app.json기준의 아이콘 리소스를 정리한 상태이며, 실제 Android native 빌드 리소스 갱신은 추후 Android 빌드 또는 prebuild 단계에서 진행할 예정입니다.스크린샷