Develop/Flutter

[Flutter 플러터] IOS 앱스토어 버전 올려서 배포할 때 Xcode Cloud 빌드 오류 해결

issuemaker99 2024. 8. 25. 07:51
728x90

기존에 심사승인되어 앱스토어에 등록된 앱을 애드몹(AdMob) 광고를 추가 개발해 버전을 올려서 배포해야 했습니다

개발한 소스를 올리고 빌드를 했더니.... 오류가 발생했습니다.

오류
Invalid Pre-Release Train. The train version '1.0.0' is closed for new build submissions
오류
This bundle is invalid. The value for key CFBundleShortVersionString [1.0.0] in the Info.plist file must contain a higher version than that of the previously approved version [1.0.0]. Please find more information about CFBundleShortVersionString at https://developer.apple.com/documentation/bundleresources/information_property_list/cfbundleshortversionstring

 

▶ [ios/Runner/info.plist] 파일을 보면 CFBundleShortVersionString 값이 [FLUTTER_BUILD_NAME] 되어 있습니다. 

 

▶ Project Navigator 메뉴에서 Runner > Targets Runner > User-Defined 이동해서 FLUTTER_BUILD_NAME 값을 변경해 줍니다.

 

그리고 다시 빌드를 시도하면 정상적으로 배포가 됩니다

LIST