Build Fail - Framework not found DCTAuth
See original GitHub issueI have followed the steps in the README.md up to and including the Handle Deep Linking > Adding URL Schemes.
Upon running the build in XCode I get the following build error:
ld: warning: directory not found for option '-F/Users/<myuser>/Library/Developer/Xcode/DerivedData/MyProject-dbvhqacaurmqvphbjpokfiwipcsy/Build/Products/Debug-iphonesimulator/DCTAuth'
ld: framework not found DCTAuth
clang: error: linker command failed with exit code 1 (use -v to see invocation)
Edit: Running Xcode 7.3.1, React Native v0.37.0, CocoaPods v1.1.1 on Mac OSX 10.11.5
Any ideas on how to resolve?
Issue Analytics
- State:
- Created 7 years ago
- Reactions:1
- Comments:13 (6 by maintainers)
Top Results From Across the Web
Get an error - ld: framework not found DCTAuth #83 - GitHub
Fix it by adding in the xcode project in the folder "Frameworks" ---> Pods / Pods.xcodeproj. Right click on Frameworks and "add Files...
Read more >Framework Not Found with xcode 12 | Apple Developer Forums
With xcode 12 first time build fails for working project with previously installed cocoapods framework: ld: framework not found Pods_CopticFind
Read more >'Framework not found' in Xcode - Stack Overflow
For the framework search path, go to your project, select your target, and then go to build settings. Search framework until you see...
Read more >Build error on xcode, Framework not found FBLPromises ...
Hello everyone From the topic above, I have trouble building my apps on xcode. I keep on getting Framework not found FBLPromises error....
Read more >framework not found ArcGIS - Esri Community
when i building my project, throw a error. [ATTACH=CONFIG]19315[/ATTACH] anybody can help me? thanks!!
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hey, yes… did you use cocoapods?
Make sure you:
(cd iOS && pod install)
.xcworkspace
file, not the.xproj
I had same problem,
pod install
somehow did not recognize DCTAuth dependency and update works for me.try
pod repo update && pod install