0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

module "XXX" not foundの対策法

Posted at

普通のmodule "XXX" not foundの記事は

flutter clean
flutter pub get

ですが私は
それでは治らなかったのでここに忘れない為に記載させていただきます。

これは
xcode上でおそらくRunnerだけでなくPodfileがなければならないのです。

その為には以下のようなコマンドをターミナルで打てばいいのだと思います。

flutter clean
flutter pub get

cd ios
rm -rf Pods Podfile.lock Runner.xcworkspace

[ -f Podfile ] || flutter create .

pod install --repo-update          
cd ..


open ios/Runner.xcworkspace

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?