Estimote iOs SDK error - ios

I added the Estimote SDK to the project and when I try to run it in a device I have the following error:
ld: framework not found Metal for architecture armv7
clang: error: linker command failed with exit code 1 (use -v to see
invocation)
To do it I followed the manual installation from here: https://github.com/Estimote/iOS-SDK
I'm using XCODE 5.1
I hope somebody can help me,
Thanks

The only solution I found after trying a lot of different things was to update to iOS 8

Related

Linker command failed with exit code 1 - old version of ios application

I dont wanna duplikate any question but honestly i tried a tons of solution but any of them worked for me.
I have to update old application from 2013 written in ObjC (Xcode 3.* i think) but i cant even build version that should be able to build. I have xcode 8.3 should i download older one ?
Apple Mach-O Linker Error Group
clang: error: linker command failed with exit code 1 (use -v to see invocation)
ld: library not found for -lcrypto
I will appreciate everything.

Adding Firebase iOS SDK with cocoapads causes library missing error

I added the Firebase iOS SDK with cocoapods and after the integration I tried to run the project and got the library missing error:
ld: library not found for -lGoogleToolboxForMac
clang: error: linker command failed with exit code 1 (use -v to see invocation)
And i found one same stackoverflow question and i tried its answer and that did not work for me.
I am using Xcode 7.3.1 and my project is hybrid project.

Xcode: ld: framework not found AVFoundation

Can anybody give me some hints on this frustrating problem.
I added WatchKit OS2 to current iOS project in Xcode 7.1.1 and when i emulate the WatchOS and iOS in simulator everything works fine.
But when i try to build it for device i get this error for Watch App Extension:
ld: framework not found AVFoundation
clang: error: linker command failed with exit code 1 (use -v to see invocation)
I googled a lot and can't find a solution to this.
Let me introduce my problem. Hope to give you some inspiration.

building for tvOS, but linking in object file built for iOS, for architecture arm64

I am using LexiContext framework in my tvOS app.
It works fine in simulator when I try to archive the app, I get:
ld: in /Users/Kashif/Dropbox/T+ve/Projects/AooForTv/lexicontext-1.2-1444206402/libLexicontext.a(Lexicontext.o), building for tvOS, but linking in object file built for iOS, for architecture arm64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
Any idea how to get around this.
For others, facing similar issue; apparently there is no way around this. If you find it, please let me know.

Why is iOS Xcode project giving error for missing OSX framework AVKit?

So my iOS project was working fine, then all of a sudden I am getting the following error when I try to run in simulator:
ld: framework not found AVKit for architecture i386
clang: error: linker command failed with exit code 1 (use -v to see invocation)
And when I try to archive I get this error:
ld: framework not found AVKit for architecture armv7
clang: error: linker command failed with exit code 1 (use -v to see invocation)
From what I can tell, AVKit is an OSX framework and not an iOS framework.
So why is my project suddenly confused and wanting an OSX framework, and do I convince it that it does not need it?
Well apparently AVKit is available in the iOS 8 SDK so I need to upgrade Xcode to version 6 in order to add it.
See this question: Need help: 'Wrong Architecture' causing app to crash when launching in iOS 7 but works fine in iOS 8
And it should be set as an Optional framework if you want to support iOS 7 and below as well.

Resources