I got a error when compile QMunicate sample i.e. quickblox - ios

The following error is showing when compile.
ld: library not found for -lPods
clang: error: linker command failed with exit code 1 (use -v to see invocation)

Try building to device - Works for me if I build to device but I get the same error when using the simulator.
Hope that works for you as well!

Did you actually do pod install to install all pods?
Also you must open *.xcworkspace and not *.xcodeproj

switched gradle to version 1.3.1, that problem vanished
dependencies {
classpath 'com.android.tools.build:gradle:1.3.1 '
}

Related

.app file not found in Derived Data (React-native ios)

When I try to build ios my react-native project, Xcode is showing that error message
ld: file not found: /Users/macbookpro/Library/Developer/Xcode/DerivedData/myapp-ffcnutcqdnueacfosafqnwvmdnhh/Build/Products/Debug-iphonesimulator/myapp.app/myapp clang: error: linker command failed with exit code 1 (use -v to see invocation)
I already tried that solution: https://stackoverflow.com/a/27496743/9238414. it's not ok since I didn't change my target name before.
it's frustrating. anyway, I solved the issue by creating a new scheme,
it worked for me.

ld: library not found for -lBoringSSL-GRPC clang: error: linker command failed with exit code 1 (use -v to see invocation)

I am currently having issues archiving my react native project in Xcode. Building and running my project works fine in Debug but archiving is a problem. The following error appears when attempting to archive:
ld: library not found for lBoringSSL-GRPC
clang: error: linker command failed with exit code 1 (use -v to see invocation)
I have tried removing 'Firebase/Firestore' from my Podfile, running pod install and then trying to archive but that doesn't seem to help. I would get the error:
ld: library not found for lDoubleConversion
clang: error: linker command failed with exit code 1 (use -v to see invocation)
I have tried removing the quotes from the library search paths in the build settings as suggested from someone who had a similar issue. This didn't help unfortunately.
I am opening the workspace. Although, when opening .workspace it does direct me to my project .xcodeproj. Not sure if this is the problem.
Can someone please assist? I would really appreciate it. I'm clueless here. I'm fairly new to Xcode and React Native.
Thank you.

An error appeared when I run Xcode 7 with entity iphone (linker command failed with exit code 1 (use -v to see invocation))

I used google signIn in my App. "build success" with simulator but an error appeared when I run with iPhone.
error message is as below:
linker command failed with exit code 1 (use -v to see invocation)
Thanks for any help.
ld: library not found for -lFMDB clang: error: linker command failed
with exit code 1 (use -v to see invocation)
I was getting same error and I got it resolved this way.
Try to set Build Active Architecture Only to NO for 'Pods' project and
your app's target
Make sure that you are using the .xcworkspace file
Don't use .xcodeproj file even if it run the app successfully on your device. It wouldn't help you to make a general build.
for more details
https://stackoverflow.com/a/28111728/348589

ld: library not found for -lPods-Google-Maps-iOS-SDK iOS

I install googlemap pod file that time i got an error and unable to solved this .. please help me
I am getting this error:
ld: library not found for -lPods-Google-Maps-iOS-SDK clang: error:
linker command failed with exit code 1 (use -v to see invocation)
This is the error because u didn't integerate sdk using podfile correctly so the sdk files are missing in your project
Use this link https://developers.google.com/maps/documentation/ios-sdk/start it will help.Thanks
follow this link properly https://developers.google.com/maps/documentation/ios-sdk/start
and make sure you have set YES in BUILD ACTIVE ARCHITECTURE ONLY in build settings (in target).

Apple mach -o- Linker Error

I am new to IOS development and i tried to resolve the error but nothing works. Provide some suggestion.
ld: library not found for -lPods-XXXXXXX-AppInvites
clang: error: linker command failed with exit code 1 (use -v to see invocation)
Open the project using workspace (that was generated by CocoaPods) instead of the xcodeproj. I think this will resolve your issue. Otherwise there may be some library missing in CocoaPods.

Resources