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.
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