[FIX] 스플래시 로고 잘림 및 EAS 빌드 환경 설정 정리#87
Merged
Merged
Conversation
Contributor
|
수고하셨습니다 따로 코멘트 달 것은 없는 것으로 보입니다 바로 머지해도 될 거 같습니다 |
sunm2n
approved these changes
Jun 17, 2026
Contributor
Author
추가 변경 사항PR 최초 작성 이후 iOS 빌드 관련 설정을 추가로 정리했습니다! 추가 확인 부탁드립니다. 주요 구현 내용
변경 파일
참고이번 추가 변경은 앱 화면/분석 플로우 변경 없이 iOS 빌드 및 Share Extension 설정 보완만 포함합니다. |
Contributor
변경 확인했습니다. 다만 이 부분을 제대로 검증하려면 실제 ios 빌드 환경에서 검증해야 하는 부분이라서 추후 머지 이후에 실제 ios 환경에서 체크 리스트를 만들고 추가하는 방향이 좋을거 같습니다 머지해도 무방해 보입니다 |
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 #86
개요
스플래시 화면에서 LinClean 로고가 잘려 보일 수 있는 문제를 수정하고, EAS Build 환경 설정을 preview/production 환경 기준으로 정리했습니다.
기존 splash 이미지는 Expo splash 화면에서 표시될 때 로고 영역이 충분히 확보되지 않아 기기나 렌더링 조건에 따라 일부가 잘려 보일 수 있었습니다. 이번 작업에서는
app.json에서 참조하는assets/images/splash-icon.png이미지를 교체해 스플래시 화면에서 로고가 안정적으로 표시되도록 보정했습니다.또한
eas.json의 빌드 프로필별 환경 설정 방식을 정리했습니다.preview프로필에 직접 API URL을 주입하던 방식을 제거하고, EAS Environment의preview/production환경을 사용하도록 통일했습니다.주요 구현 내용
splash-icon.png교체development빌드 프로필에environment: "preview"추가preview빌드 프로필의 직접env설정 제거preview빌드 프로필이 EASpreview환경을 사용하도록 변경preview-device빌드 프로필의 preview 환경 설정 유지production빌드 프로필에environment: "production"추가파일별 역할
assets/images/splash-icon.png: 앱 실행 시 표시되는 스플래시 화면 이미지eas.json: EAS Build 프로필별 배포 환경 및 환경변수 참조 설정해결한 이슈 목록
app.json에서 참조하는 splash 이미지 파일 확인splash-icon.png이미지 교체development빌드가 preview 환경을 사용하도록 설정preview빌드의 직접 env 주입 방식 제거preview빌드가 preview 환경을 사용하도록 설정production빌드가 production 환경을 사용하도록 설정origin/dev기준 변경 파일 확인git diff --check통과체크 사항
splash-icon.png가app.json의 splash 설정에서 참조되는 파일인지 확인eas.jsonJSON 형식 유지참고사항
preview프로필에서 직접EXPO_PUBLIC_API_BASE_URL을 주입하던 방식은 제거했고, EAS Environment의preview환경을 사용하도록 변경했습니다.Screenshots or Video