GeneratedPluginRegistrant.Module not found에 빠진 일

1988 단어 FlutteriOSM1tech
나는 몇 시간 동안 푹 빠져서 적어 두었다.
로컬 환경은 애플 실리콘(M1Pro)이다.

발생적


다음 프로그램 라이브러리를 설치할 때도 다음과 같은 오류가 발생합니다.mobile_scanner is not found qr_code_scanner is not foundhttps://github.com/juliansteenbakker/mobile_scanner/issues/74
  • qr_code_scanner
  • https://pub.dev/packages/qr_code_scanner
  • mobile_scanner
  • https://pub.dev/packages/mobile_scanner

    처리하다.


    1. Xcode를 실행합니다.xcworkspace로 열기


    다음 설명과 같이 다음 명령을 사용하여 Xcode를 엽니다.open ios/Runner.xcworkspacehttps://github.com/flutter/flutter/issues/43986#issuecomment-573171119
    하지만 해결되지 않았어...

    2. 프로그램 라이브러리 재설치 및 열기


    다음 주석에서 보듯이 clean &install 라이브러리를 시도해 보십시오.
    cd ./ios/
    pod install
    flutter clean # cancel by ctrl+c if it hangs up
    
    https://github.com/flutter/flutter/issues/43986#issuecomment-583020657
    하지만 pod install에도 오류가 발생했다.
    다음은 글에서 말한 바와 같이 Intel 모듈로 다시 설치하여 Xcode를 열었을 때 오류가 마침내 해결되었습니다...
    sudo arch -x86_64 gem install cocoapods
    sudo arch -x86_64 gem install ffi
    arch -x86_64 pod install
    
    https://qiita.com/Capotasto/items/2a9ec4b4fcb2e0c0af9f

    좋은 웹페이지 즐겨찾기