when build project,show this error,nothing to add in link binary with libraries,i don't know the reason
library not found for -lPods-Doppio-Mantle
I guess you were meaning after you install pod you have an error like that:
ld: library not found for -lPods-Doppio
clang: error: linker command failed with exit code 1 (use -v to see invocation)
Did you open the xworkspace that Cocoapods created, instead of xcodeproj?
Or check if you install pod in the right directory. I mean in the directory of your Project:
cd myProject
pod install
Related
I just create React Native project (0.64.1)
and I install appDynamic (21.4)
This is the version I found in my package.json
"#appdynamics/react-native-agent": "^21.4.0",
"appdynamics": "20.7.0",
How, about when I try to run the application on iOS device,
here is the error message I got:
ld: library not found for -lADEUMReactNative
clang: error: linker command failed with exit code 1 (use -v to see invocation)
I have tried the following method:
remove the Library Search Path
change the path of libADEUMReactNative.a under "Link Binary With Libraries" of "Build Phases"
which method I can tried? thank you
Make sure the pod version and the IOS deployment target is >= 11.
Then do pod install and build your project.
I am trying to build an already existing iOS project. And I get this error:
ld: library not found for -lAFNetworking
clang: error: linker command failed with exit code 1 (use -v to see invocation)
I have tried deleting Library Search Paths, installing pods with pod install, running .workspace but nothing is working.
Try following:
1. Go build setting
2. Find other linker command
3. Delete lAFNetworking from there
4. Clean and build
I got this error.
ld: warning: directory not found for option
'-L/Users/span/Desktop/testbridge/platforms/ios/build/Debug-iphoneos'
ld: library not found for -lMMWormhole clang: error: linker command
failed with exit code 1 (use -v to see invocation)
After run pod install or pod update you must use the new .xcworkspace file instead of the old .xcodeproj file.
It happens because .xcworkspace contains your .xcodeproj and the pods.
After that you should be able to run normally.
It's possible use this library with pod install?
My project already uses pod install and when I add this library, crash with:
"(UIImageView+AFNetworking.o) ld: 76 duplicate symbols for architecture i386 clang: error: linker command failed with exit code 1 (use -v to see invocation)"
VIMNetworking worked out its Cocoapods issues - see https://github.com/vimeo/VIMNetworking
The Podfile entries that worked for me were
pod 'VIMNetworking', '~>5.4.2'
pod 'VIMVideoPlayer', '~>5.4.2'
and deleting the line for AFNetworking since the VIMNetworking pulls AFNetworking in as a dependecy.
I found WeChatSDK 0.0.1 on CocoaPods
I have added pod 'WeChatSDK', '~> 0.0.1' to my Podfile,
butI got this error after run project:
ld: warning: directory not found for option '-L/Users/mac/Documents/Projects/Project-iOS/Pods/WeChatSDK/WeChat_SDK_iOSen'
ld: library not found for -lWeChatSDK
clang: error: linker command failed with exit code 1 (use -v to see invocation)
I've updated the WeChatSDK Spec here to use some newer hooks. This will hopefully fix your issue. Otherwise you should submit a new issue on our issue tracker with things like this.