-
반응형
이번에 (어쩔수 없이 ...) Xcode 15 / MacOS 소노마로 업그레이드 했다.
그동안 업데이트를 안(못) 했던 이유는 Xcode15 에서 pod install이 제대로 동작하지 않는다는 이슈 때문이었다.
이번에 해결되었다고 해서 모든 팀원이 OS, Xcode, Pod, Flutter까지 전체적으로 업데이트를 모두 진행 했다.
Cocoapod update
일단 ios/Gemfile 에 있는 cocoapod version을 올렸다.
- gem "cocoapods", '1.12.1' + gem "cocoapods", '1.14.2'
https://github.com/CocoaPods/CocoaPods/releases/tag/1.13.0
Release 1.13.0 · CocoaPods/CocoaPods
Enhancements Add visionOS as a new platform. Gabriel Donadel #11965 Extend script_phase DSL to support always_out_of_date attribute. Alvar Hansen #12055 Bug Fixes Use safe_load during custo...
github.com
이 릴리즈 노트에서 볼 수 있듯이 1.13.0 에서 Xcode15를 버그픽스가 포함되었다. 96명이나 좋아요를 누름 .. ㅋㅋㅋ
이제 pod을 업데이트할 차레
- bundle update
- bundle install
이러면 gem.lock이 변경된다.
이제 cocoapod 업데이트 진행
- bundle exec pod repo update
- bundle exec pod update
- bundle exec pod install
이 순서로 진행 했다.
이러고 나니까 이상 에러가 발생 했는데 ..
ARC Semantic Issue (Xcode): No visible @interface for 'ARTSRWebSocket' declares the selector 'initWithURLRequest:logger:' /Users/jooeunjin/frienkly/papyrus-client/ios/Pods/Ably/Source/ARTWebSocketFactory.m:6:35 Could not build the application for the simulator. Error launching application on iPhone 15 Pro.
한창 삽질하다 보니 해결이 되었는데, 정확히 아래 명령어 중 어떤애가 해결한 건지는 잘 모르겠다. 훔 ..
- 경건한 마음
- 컴퓨터 재시작 및 Xcode, android studio재시작
- flutter clean
- flutter pub get
- Pods 폴더, podfile.lock 삭제
- bundle exec pod install
- fluter run --verbose
다른 팀원분도 동일하게 발생하길래, 기록용으로 적어보았다. 🫡
반응형'개발' 카테고리의 다른 글
[Flutter] 프로젝트 시작하기 - Firebase 적용 (0) 2024.02.16 [Flutter] Fastlane 이용해서 배포 자동화 하기 #3 Android 설정 (1) 2023.11.24 Cocoapod 과 bundler (1) 2023.11.20 Realm Encryption 사용시 Encryption Export Regulations 설정하기 (1) 2023.11.17 [AppStore] access to cloud-managed distribution certificates 문제 해결 (0) 2023.08.01 댓글