스플래시 화면 표시 시간 조정 및 배경색 변경

This commit is contained in:
hansoo
2025-03-19 22:51:02 +09:00
parent 2ec913c6c0
commit c5a09a1cbd
54 changed files with 2771 additions and 16 deletions

25
cleanup-scripts.sh Executable file
View File

@@ -0,0 +1,25 @@
#!/bin/bash
# 불필요한 스크립트 파일 정리 스크립트
echo "불필요한 스크립트 파일 정리 중..."
# 프로젝트 디렉토리로 이동
cd "$(dirname "$0")"
# 스플래시 화면 관련 이전 스크립트 삭제
echo "스플래시 화면 관련 이전 스크립트 삭제 중..."
rm -f fix-splash-screen.sh
rm -f fix-splash-screen-v2.sh
rm -f fix-splash-screen-v3.sh
rm -f fix-splash-image.sh
rm -f fix-native-splash.sh
rm -f increase-splash-duration.sh
rm -f fix-splash-and-background.sh
rm -f optimize-app-loading.sh
# 최종 스크립트만 남기고 이름 변경
echo "최종 스크립트 이름 변경 중..."
mv fix-splash-duration-force.sh fix-splash-screen-final.sh
echo "정리 완료!"
echo "최종 스플래시 화면 수정 스크립트: fix-splash-screen-final.sh"