## build ios 関連
### the sandbox is not in sync with the podfile.lock
`/ios` に移動して `pod install` を実行する。
`pod install` がエラーになる時は `pod update` を実行してから `pod install` を実行してみる。
### Module '<module name>' not found
- `Runner.xcworkspace` を開いてビルドする( not `Runner.xcodeproj` )
- キャッシュをクリアして再度ビルドする
```
$ flutter pub cache clean
$ flutter clean
$ flutter pub get
$ cd ios > pod install
xcode から build
```