Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 리펙터링
- ribs
- RxCocoa
- UITextView
- Clean Code
- swift documentation
- Observable
- combine
- tableView
- swiftUI
- Human interface guide
- 리팩토링
- 스위프트
- ios
- 클린 코드
- collectionview
- SWIFT
- clean architecture
- uiscrollview
- Xcode
- Refactoring
- 애니메이션
- UICollectionView
- map
- uitableview
- Protocol
- MVVM
- rxswift
- HIG
- 리펙토링
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - swift] podfile.lock의 SPEC CHECKSUMS값이 변경되는 경우 싱크 해결방법 본문
Git, CocoaPods, Xcode, Shell
[iOS - swift] podfile.lock의 SPEC CHECKSUMS값이 변경되는 경우 싱크 해결방법
jake-kim 2021. 7. 8. 22:08CocoaPod 클린 후 시도 (아래 방법 순서대로 실행)
- pod cache clean --all
- 캐시 삭제
- rm -rf Pods
- pod install 시 설치되는 Pods디렉토리 삭제
- rm -rf ~/.cocoapods/repos/trunk/
- trunck는 CocoaPods API 서비스와 인증정보를 가지고 있는 디렉토리
- pod update
- pod update {pod name}: Podfile.lock을 참조하지 않고 모든 팟을 최신 버전으로 업데이트
- cf) pod install: 새로운 pod을 다운받고 설치, 각 설치된 버전을 Podfile.lock에 기록, install은 Podfile.lock에 지정된 버전만 설치하며 새로운 버전이 존재하는지는 체크하지 않는 명령어
- Podfile.lock은 pod들의 버전을 계속 추적하여 기록해놓고 유지
- cf) pod repo update: /Users/{username}/.cocoapods/repos에 있는 podspec파일을 업데이트
* 참고
https://guides.cocoapods.org/making/getting-setup-with-trunk.html
'Git, CocoaPods, Xcode, Shell' 카테고리의 다른 글
[iOS - swift] Firebase Crashlytics에 dSYM 파일 수동 업로드 방법 (0) | 2021.07.10 |
---|---|
[iOS - Xcode] Memory Leak, strong Reference, cycle 확인 방법 (with Instruments) (0) | 2021.07.10 |
[iOS - swift] 특정 문자열 일괄 변경 리눅스 (문자열 찾기, terminal, linux, find, xargs, sed) (0) | 2021.05.05 |
[Cocoapods] 3. cocoapod 배포 방법 (1) | 2021.04.14 |
[Cocoapods] 2. cocoapod 배포 - 코코아팟 라이브러리 소스코드 생성, 오픈소스 만들때 고려할 점 (0) | 2021.04.12 |
Comments