Module 'flutter_facebook_login' not found

1,214

Solution 1

Faced the same problem. I just deleted Podfile, Podfile.lock and Pods folder, installed flutter_facebook_login again (latest version) and did "flutter pub get". It works for me.

Solution 2

Verify that you are using Runner.xcworkspace and not Runner.xcodeproj

flutter clean
flutter pub get
cd ios
pod install

https://github.com/flutter/flutter/issues/41033#issuecomment-534604875

Share:
1,214
azim vaziri
Author by

azim vaziri

Updated on December 17, 2022

Comments

  • azim vaziri
    azim vaziri over 1 year

    I'm using the flutter_facebook_login package and I got this error message:

    "Module 'flutter_facebook_login' not found"

    in the GeneratedPluginRegistrant.m file in iOS.

    is there anyone faced this issue? Any help would be appreciated.

    Thank you.