Flutter ios 환경 구축 메모

<추가로 갱신 중 최종 갱신일(2020/08/22)>

본문은 Flutterアプリ開発においてiosでのErrorが起こった内容および,それに対してTryしたことのメモ.자신이 개발 중에 발생한 에러를 공유하겠습니다. 또 다른 해결책이 있으면 가르쳐 주시면 기쁩니다.

Error1: Warning: CocoaPods not installed.



디버그시 발생하는 오류 내용
  • 보통
  • 
    brew install cocoapods
    pod setup
    

    2.1, 로 완료하지 않는 경우
    
    sudo gem uninstall cocoapods
    rm -Rf Pods/
    rm -Rf Podfile
    rm -Rf Podfile.lock
    rm -Rf Runner.xcworkspace
    brew link --overwrite cocoapods
    flutter build ios
    

    위의 두 가지를 수행하여 해결할 수있었습니다.

    Error2: error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.



    flutter build ios에서 발생하는 오류 내용

    diff:/../ios/./Pods/Podfile.lock: No such file or directory
    diff:/../ios/Pods/Pods/Manifest.lock: No such file or directory
    error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.

    pod install을 실행해도 오류가 해결되지 않습니다 .........

    ◆대처법:아래 URL을 실행
    htps //w w. 네. 코 m / 아 r ゔ ぇ s / 2364

    ◆ 상기에서도 치료되지 않은 경우

    Phase 1
    1. choose the target > go to Build Phrases > click Link Binary With Libraries > remove all libPods.a files
    
    2. pod install
    3. flutter clean and flutter build ios
    

    Phase 2
    1. open Terminal
    
    2. pod deintegrate --verbose    
    3. pod install --verbose
    

    Phase 3
    1. choose the target > go to Build Settings > click "+"sign
    2. add 2 User-Defined Settings: [to the left = to the right]
    3. PODS_ROOT = ${SRCROOT}/Pods
    4. PODS_PODFILE_DIR_PATH = ${SRCROOT}/

    Phase 4
    다시 앱 다시 만들기...............

    Phase 4까지 하는 것으로 드디어 해소되었습니다만, 이것은 올바른 해결책이라고는 말할 수 없습니다. 그러므로 같은 오류에 부딪히는 사람들에게 해결책이 있다면 알려주십시오.

    좋은 웹페이지 즐겨찾기