Reputation: 239
When i run on xcode 7 i got this error :
"duplicate symbol _OBJC_METACLASS_$_FlurryPLCrashReportMachExceptionInfo duplicate symbols for architecture x86_64 clang: error: linker command failed with exit code 1 (use -v to see invocation)"
How can i solve this ?
Upvotes: 0
Views: 666
Reputation: 2446
If you added flurry
without CocoaPods you need choose your Target -> Build Phases -> Compile Sources and find FlurryPLCrashReportMachExceptionInfo
class.
Remove duplicates
Upvotes: 1