Flutter ios 환경 구축 메모
본문은
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까지 하는 것으로 드디어 해소되었습니다만, 이것은 올바른 해결책이라고는 말할 수 없습니다. 그러므로 같은 오류에 부딪히는 사람들에게 해결책이 있다면 알려주십시오.
Reference
이 문제에 관하여(Flutter ios 환경 구축 메모), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/Shogo-dayo/items/baa096756ca6cc9fccd9텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)