Duplicate symbols for architecture x86_64 under Xcode IONIC IOS App - ios

I am building an application for IOS using the IONIC framework. It was working fine, that is, until I added this plugin cordova-plugin-firebase-analyticsHowever. Now, I keep getting the following error:
ld: 89 duplicate symbols for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
I have read the similar questions posted here but none of solutions worked.
Any help will be appreciated. Thanks

Related

Xcode build error after swift 4 migration

I have migrated my old working iOS project from Swift 2.3 to Swift 4, I am getting build failed with the error below:
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
and the warning below:
missing required architecture x86_64 in file ISHPullUp.framework/ISHPullUp
Note that:
I have updated the project's carthage to the latest versions of frameworks.
the framework I'm using and mentioned is ISHPullUp
I am getting this warning and error only when building for iPhone simulator unlike using iPhone physical device.
Am I missing something?
thanks in advance

updated core plot library in old project

Hi I have updated core plot library for graphs in my project(updated header files and make pod file for libcoreplot-cocoatouch.a library)but it continuously giving me error like "directory not found for option '-FFramework'" as below and I am using xcode 7 - ios 9 and I have tried almost all the solution found on stackoverflow and other sites but nothing is working can anyone help me out with this please.
error : ld: warning: directory not found for option '-FFramework'
ld: symbol(s) not found for architecture i386 clang: error: linker
command failed with exit code 1 (use -v to see invocation)

Add a Facebook login in my app delegate but it is showing some errors

I am using Xcode 6.4.
I do not understand the problem.
ld: 230 duplicate symbols for architecture x86_64
I have tried to add -ObjC linker flag also.
clang: error: linker command failed with exit code 1 (use -v to see
invocation)in swift
Any one help me please.

Xcode Linker Error When using web service

ld: building for iOS Simulator, but linking against dylib built for MacOSX file '/Applications/Xcode.app/Contents/Developer/Library/Frameworks/XCTest.framework/XCTest' for architecture i386
clang: error: linker command failed with exit code 1 (use -v to see invocation).
What to do?
Please go through the link. It might help solving your problem.
Reference

linker command failed with exit code 1 (use -v to see invocation) - Xcode

My app runs fine on a real device, but when i'm trying to run it on a simulator it gives me this error. Can anyone help me understand what's this error is ?
ld: in'/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/usr/lib/libextension.dylib', missing required architecture x86_64 in file /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/usr/lib/libextension.dylib (3 slices) for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
Thank you
You are trying to link libextension.dylib against the DEVICE SDK rather than the SIMULATOR SDK.
You should make sure that you are linking against /usr/lib/libextension.dylib relative to the SDK rather than against /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/usr/lib/libextension.dylib relative to /

Resources