-
Notifications
You must be signed in to change notification settings - Fork 903
FBSDKCoreKit/FBSDKCoreKit.modulemap' not found #780
Comments
I have the same issue but it works on the simulator. I'm using xcode 11.5. Any solution? |
same problem ((( |
@sudeepjainn do you resolve this issues? |
I was able to solve by doing imports in my
Podfile has these lines:
Which then threw up some Swift errors, which I solved by following these instructions: mxcl/PromiseKit#1059 (comment) |
I am getting the same error. using |
@vassilmladenov @belgamo By any chance you opened on Xcode |
Any solutions for this issue? |
@oularrea do you resolve this problem? |
Hey @janicduplessis, do you know how can i fix this problem ? :( on emulator is ok, the problem is when i try to run from xCode on release |
Yes, in my case I get the error when I update the ios sdk to 11.0 and just when I compiled to release, but in the end I solved in the xcode putting the target to 11 as before I had it in 9.0 |
Same issue here. Steps to reproduce: npx react-native init fbsdkexample
cd fbsdkexample
yarn add react-native-fbsdk
cd ios && pod install && cd ../
npx react-native run-ios |
@sudeepjainn have you tried to build your project with XCode instead of react-native-cli? |
same issue with xcode Version 12.0 |
I had to downgrade xcode to make it work with xcode Version 11.7 (11E801a) |
Same issue here. I'm using: Xcode 11.7 and React Native: 0.63.2. |
I build the app. I don't know exactly which change is responsible for making it work, but I will list what I did.
PS.: Remember when your project builds, go to "Show the Issue navigator" and click on the Warning that says something like: "change/migrate to Swift 5". Now I am trying to solve some errors when the application loads in the simulator. The saga continues ... |
I went through many Xcode upgrades (12.2 Beta) and downgrades (11.7) for half a day and then I restarted my computer for a completely different reason and it worked (with Xcode 12)... Hope it can help some of you |
I'm trying to build on RN 63.3 + xcode 12 and encounter the same issue. ( To me, I believe it's an xcode 12 issue. My whole process to make it work are like below:
Then the hope it helps someone. |
I was having the same issues with Xcode 12. I got lucky by upgrade my |
I did this, and I have this issue also now |
I managed to solve this issue in the end (RN 0.63.3) by including the below in the Podfile and installing. I'm sure there's a better way to do it (like this by @winstromming), but it worked for now!
And then changing the location to 'Relative to Workspace' in Xcode as below. This included the .modulemap file as needed when archiving. |
I tried all solution but still same error My Environment |
Similar to @oularrea, recently upgraded the IOS deployment target to 11.0 and started getting this error, I realized I forgot to change the IOS target also on the Project Deployment Target, that solved the issue. Before realizing I had that target mismatch I tried downgrading the npm package from 2.0.0 to 1.1.2, that also fixed the issue. |
didn't make it work here... tried every solutions here... |
Please someone solve this problem thanks very much |
Fixed using @nahuelb suggestion above. Any deployment target under 11 was failing but 11 fixed the issue for me and allowed me to archive for a release. |
Stuck on this as well. Requesting maintainers to address this issue. |
I also having same issues and try every single solution here with no result, I'm using macOS Big Sur version 11.0.1 and Xcode version 12.2 (12B45b). |
Thanks! I never built a native iOS app before. Both of these files opened up the project in XCode, so didn't realise this could be the issue. Running the build command from |
I have the same issue with bigsur and Xcode 12.3, but ONLY in cli. building with Xcode works perfectly. CLI Xcode version the same, 12.3. Not sure yet why is that. |
I had the same issue with BigSur and Xcode 12.3 after I updated in
In my case, I changed the first and second settings above right after I had changed |
Thank you @nahuelb! Following your solution worked out. 🤜🤛 |
I am not sure why, but this was a game changer for me! App was not building in .xcodeproj but .xcworkspace built just fine! |
@zxcpoiu solution worked for me <3
|
In my case was because of |
This worked for me. Thank you so much for saving me from hours of fixing this issue. |
FBSDKCoreKit.modulemap' not found
I am creating a IOS build but i am getting an error:fatal error: module map file '/Users/pmarshall/Library/Developer/Xcode/DerivedData/tvderby_app-ctaepyojeedweaeatsjuuzaicdaj/Build/Products/Debug-iphonesimulator/FBSDKCoreKit/FBSDKCoreKit.modulemap' not found
1 error generated.
I updated POD and Imported
#ifdef BUCK
#import <FBSDKCoreKit/FBSDKCoreKit.h>
#else
u/import FBSDKCoreKit;
#endif
but still getting same error. Anyone have any solution for this.how can I solve this issue????
The text was updated successfully, but these errors were encountered: