Swift Compiler Error (Xcode): No such module 'FirebaseMessaging'

euni·2025년 4월 2일

debug_error

목록 보기
2/3

문제 상황

  • xcode 버전 업데이트 이후, 갑자기 FirebaseMessaging 모듈이 없다고 빌드가 되지 않는 에러 발생

    Failed to build iOS app
    Swift Compiler Error (Xcode): No such module 'FirebaseMessaging'
    /Users/seeun/projects/marrying-flutter/ios/ImageNotification/NotificationService.swift:8:7
    Encountered error while building for device.

해결 방법

  • ios > podfile 코드 추가
      target 'ImageNotification' do
        use_frameworks!
        pod 'Firebase/Messaging'
      end
profile
플러터 개발자 👩🏻‍💻

0개의 댓글