Flutter: Cocoapods The 'Pods-Runner' target has transitive dependencies that include static binaries: Flutter.framework Flutter: Cocoapods The 'Pods-Runner' target has transitive dependencies that include static binaries: Flutter.framework xcode xcode

Flutter: Cocoapods The 'Pods-Runner' target has transitive dependencies that include static binaries: Flutter.framework


For me, I deleted the ios/Flutter/Flutter.framework folder and install pods pod install again then it worked.


Delete ios/Flutter/Flutter.framework folder.

Install pods again then it worked. It will regenerate the deleted folder

pod install


This process solve it for me :

  1. Delete ios/Flutter/Flutter.framework folder.
  2. Delete ios/PodFile
  3. Delete ios/PodFile.lock
  4. Go to the project root and re-save the file pubspec.yaml (on VSCode, this will automatically runs the following command : flutter get pub)
  5. Run the project again

Let me know if it works for you too