개발 일지
1. 앱 아이콘 변경
expo에서는 adaptive-icon 사용함. 규격에 맞게 제작해야 함. 아래 피그마 참고해서 만들면 됨.
https://www.figma.com/community/file/1155362909441341285
단, android만 여기에 해당. ios는 스토어처럼 만들면 됨.
(위:android 코드, 아래:ios코드)
2. 실제 어플 아이콘 업데이트
APP_VARIANT="production" npx expo prebuild eas update --branch production --message "adaptive app icon"8시 24분에 업데이트 함.
3. ios 키보드 문제 해결
문제 없었음. simulator의 문제였는듯. xcode로 빌드하니까 정상적으로 작동됨!!
4. ios build 에러 해결
ios를 eas build하려니까 계속 아래 에러가 발생했음.
GoogleService-Info.plist를 찾을 수 없다는 에러였음. 한참 헤메다가 .gitignore에서 GoogleService-Info.plist이 있어서 안되는 거였음. 원래는 https://github.com/expo/eas-cli/issues/228#issuecomment-861407074 이렇게 해결해야 하지만, 나는 우선 .gitignore에서 제거해서 성공함!