The two libs are AFNetworking and libcomScore.a.
In AFHttpClient.h, extern NSString * const AFNetworkingReachabilityDidChangeNotification;
In AFHttpClient.m, NSString * const AFNetworkingReachabilityDidChangeNotification = @"***";
Somehow in some class in the comScore static lib, AFNetworkingReachabilityDidChangeNotification is redefined, causing error
duplicate symbol _AFNetworkingReachabilityDidChangeNotification in: comScore-iOS-ARMV7_ARMV7S_ARM64-2.1403.14/comScore-iOS-ARMV7_ARMV7S_ARM64-2.1403.14/comScore/libcomScore.a(CSReachabilityManager.o) /Users/apple/lib***.a(AFHTTPClient.o)
I don't want to touch the code in AFNetworking(although I can easily fix it by rename the const.) So does anybody have any idea ?