-
반응형
Fastlane Library 업데이트
스테이징 & AppStore 빌드가 제대로 안되서 확인.
에러코드가 명확하지 않고 계속 code sign error 라고만 나온다.
code sign error in target 'NotificationService' from project 'xxx'
Appstore deliver 의 경우 Transporter 를 찾지 못하는 이슈인데, 아래 Fastlane최신 버전에서 해결되었다고 해서, Fastlane 을 업데이트 해주었다.
https://github.com/fastlane/fastlane/issues/20371#issuecomment-1250369918Unable to upload to testflight using Xcode 14 beta · Issue #20371 · fastlane/fastlane
New Issue Checklist Updated fastlane to the latest version I read the Contribution Guidelines I read docs.fastlane.tools I searched for existing GitHub issues Issue Description When trying to use u...
github.com
Fastlane update
bundle exec fastlane
요거 하니까 코드사인 에러까지 모두 해결 되었음
Cocopod signing error
Xcode 14 부터 pod 에 대한 CODE_SIGNING_ALLOWED 가 디폴트 true로 바뀌면서 생긴 버그이다.
https://github.com/CocoaPods/CocoaPods/issues/11402#issuecomment-1201464693
Xcode 14 build failed with manual code sign and app resource bundles · Issue #11402 · CocoaPods/CocoaPods
I've read and understood the CONTRIBUTING guidelines and have done my best effort to follow. Report What did you do? Integrate a pod with resource bundle. Set app code sign style to Manual. Build a...
github.com
여기 이슈를 참고해서 post_install에 한 줄 추가해주면 된다. 굿
post_install do |installer| installer.pods_project.targets.each do |target| if target.respond_to?(:product_type) and target.product_type == "com.apple.product-type.bundle" target.build_configurations.each do |config| config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO' end end end end
그 외에도 짤짤이 이슈들이 많았는데 ..
막상 해결하고 나니까 생각이 안나네 ; 다음부터는 해결하는 과정마다 메모를 적어야겠다.
반응형'개발' 카테고리의 다른 글
[iOS] Fastlane 으로 metadata, screenshot 자동 업로드하기 (0) 2023.05.08 asdf 적용해서 ruby/node 버전 통일하기 (0) 2023.03.30 [Git/Sublime] error: failed to push some refs 오류 해결 (1) 2023.03.27 [Fastlane] APP_SPECIFIC_PASSWORD 에러 해결하기 (0) 2023.03.14 [Swift/iOS] Auto rolling CollectionView 구현하기 & 스냅 스크롤 구현하기 (0) 2022.11.02 댓글