1. ホーム
  2. objective-c

[解決済み] プロジェクトビルド時のCocoaPodsエラーについて

2022-04-21 23:44:16

質問

CocoaPodsを使用したプロジェクトをビルドすることができません。以下のようなエラーが発生します。

diff: /../Podfile.lock: No such file or directory
diff: 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 は問題なく動作するようで Pods プロジェクトがワークスペースに追加されました。試しに $ pod update が、これは役に立ちません。

どうやら PODS_ROOT が設定されていない。

ポッドファイルです。

platform :ios, '6.0'

workspace 'Example.xcworkspace'
xcodeproj 'example/Example.xcodeproj' 

pod 'TestFlightSDK', '~> 1.3.0-beta.5'
pod 'TestFlightLogger', '~> 0.0.2'
pod 'CocoaLumberjack', '~> 1.6.2'
pod 'Reachability', '~> 3.1.0'
pod 'SBJson', '~> 3.2'
pod 'MKMapViewZoom', '~> 1.0.0'

解決方法は?

私もPodfileに大きな変更を加えたとき、同じような問題が発生しました。私の解決策は、ワークスペース・ファイルを削除して pod install をもう一度。

rm -rf MyProject.xcworkspace
pod install