Roei Nadam
Roei Nadam

Reputation: 1780

Update TwitterKit SDK in iOS

I have this error :

ld: '/Users/MyName/Desktop/ProjectName/PName/PName/Resources/Frameworks/Fabric.framework/Fabric(Fabric.o)' does not contain bitcode. You must rebuild it with bitcode enabled (Xcode setting ENABLE_BITCODE), obtain an updated library from the vendor, or disable bitcode for this target. for architecture arm64

clang: error: linker command failed with exit code 1 (use -v to see invocation)

How can I update this or resolve this problem ?

Upvotes: 2

Views: 247

Answers (1)

abhimuralidharan
abhimuralidharan

Reputation: 5939

Search for bit code on build settings.Turn it to NO.This appears because Fabric.framework does not have bitcode in it. Bitcode will be automatically turned to yes from xcode 7.

So,either you should get an updated framework from the vendor with bitcode enabled or you should turn bitcode to NO

enter image description here

Upvotes: 1

Related Questions