error4

[Xcode 15] Firebase SDK An attribute list cannot appear here 오류 - flutter에서 해결하기 안녕하세요. IT 전문 블로거 여우별동산입니다. iOS 17이 출시되면서 Xcode의 버전도 15로 업데이트되었습니다. 업데이트 이후 앱을 빌드하려는데 계속 다음과 같은 오류가 발생했습니다. 오류 살펴보기 /Users/sajinbangit/myniceflutterapp/ios/Pods/FirebaseFirestore/Firestore/Source/API/FIRFirestoreSettings.mm:33:1 An attribute list cannot appear here 오류 해결하기 cloud_firestore가 최신 버전이 아니었기 때문에 발생한 오류였습니다. 플러터에서는 아래의 명령어로 최신 버전으로 업그레이드할 수 있습니다. flutter pub upgrade --major-versions 플러그인.. Coding 2023. 9. 25.
CocoaPods could not find compatible versions for pod "PurchasesHybridCommon" 오류 해결하기 (RevenueCat) 안녕하세요. IT 전문 블로거 여우별동산 입니다. 오늘도 평화롭게 개발을 하면서 Pod file을 install 하던 중 CocoaPods could not find compatible versions for pod "PurchasesHybridCommon" 오류가 발생하였습니다. 지난 번에도 한 번 발생했던 오류인지라 그 때 했던 방법으로 해결할 수 있었습니다. 오류 살펴보기 저는 flutter 앱에 RevenueCat이라는 패키지로 인앱결제를 서비스하고 있습니다. 해당 패키지 내에 포함되어 있는 PurchasesHybridCommon에서 오류가 발생한 것으로 보입니다. 제 경우 다음의 메시지가 콘솔에 표시되었습니다. [!] CocoaPods could not find compatible version.. Coding 2023. 9. 22.
Error running pod install - Flutter 오류 해결하는 방법 안녕하세요. IT 전문 블로거 여우별동산 입니다. 오늘 플러터 앱을 빌드 하는데 running pod install 오류가 발생했습니다. 해결 방법을 여러분과 공유하고자 이렇게 글을 쓰게 되었습니다. Error running pod install Error launching application on iPhone 14 Pro Max. 이 오류는 주로 M1, M2와 같은 실리콘 맥북에서 자주 발생하는 것으로 알려졌는데요. 저는 개발 하면서 이 오류는 99999번째 만나는 것 같습니다. 그럼, 이 오류를 해결하는 방법을 알려드리도록 하겠습니다. 1번 방법 iOS 폴더에 있는 Podfile 상단에는 아래와 같은 것을 찾을 수 있는데요. # platform :ios, '9.0' 이 녀석을 아래와 같이 바꿔주시면.. Coding 2023. 4. 11.
CocoaPods could not find compatible versions for pod "Firebase/CoreOnly" - Flutter 오류 해결하는 방법 안녕하세요. CocoaPods could not find compatible versions for pod "Firebase/CoreOnly" 오류가 떠서 해결 방법을 공유하고자 합니다. [!] CocoaPods could not find compatible versions for pod "Firebase/CoreOnly": In snapshot (Podfile.lock): Firebase/CoreOnly (= 10.3.0) In Podfile: firebase_core (from `.symlinks/plugins/firebase_core/ios`) was resolved to 2.9.0, which depends on Firebase/CoreOnly (= 10.7.0) Specs satisfying t.. Coding 2023. 4. 11.