flutter_sound: [BUG] No podspec found for `flutter_sound_web` in `.symlinks/plugins/flutter_sound_web/ios`

After the last Flutter Sound update I noticed that I can’t run a Pod install anymore. I get the following error message every time.

No podspec found for flutter_sound_web in .symlinks/plugins/flutter_sound_web/ios

I also noticed that the podspec is named flutter_soundweb instead of flutter_sound_web. Is this a mistake or is it intentional?

About this issue

  • Original URL
  • State: closed
  • Created 4 years ago
  • Comments: 17

Most upvoted comments

Here is the magic sequence of instructions that I execute when I have problems with Cocoapod :

cd flutter_sound/example
flutter pub get
flutter clean
cd ios
pod cache clean --all
rm Podfile.lock
pod repo update
pod install
cd ../../..