Fastlane을 사용하여 배포할때 겪은 에러들

이건준·2024년 4월 11일
0

가격책정 및 디바이스 스크린샷 업로드 App is not eligible for submission until pricing has been set.

  • 심사제출할때에 2가지 경고가 떴는데 해당 앱의 [가격 및 사용 가능 여부]란에 들어가서 내가 개발한 앱이 유료인지 무료인지 유료라면 가격을 어떻게 측정할것인지에 대한 정보를 작성

App screenshot missing (APP_IPHONE_55). - A screenshot with type iphone6Plus is required but was not provided App is missing required pricing.

  • 앱 디바이스에 따라서 스크린샷이 달라져 보이기에 필수적으로 넣어야할 스크린샷이 존재하는데 일부 디바이스에 대한 스크린샷을 넣지않아 생긴 문제였다

-> iPhone 5.5 디스플레이에 대한 스크린샷 삽입하니 해결!!

Export compliance is required to submit Add information to the :submission_information option...Example: submission_information: { export_compliance_uses_encryption: false }Example CLI: --submission_information "{\"export_compliance_uses_encryption\": false}" This can also be set in your Info.plist with key 'ITSAppUsesNonExemptEncryption'

  • ITSAppUsesNonExemptEncryption키에 대한 값을 Info.plist에 추가 혹은 upload_to_app_store 액션에

submission_information: { export_compliance_uses_encryption: false }

  • 위 명령어 추가

0개의 댓글