Reputation: 2249
The basic error after adding the Flurry Lib while adding the following code in App Delegate
[Flurry startSession:@"MY_API_KEY"];
is
Undefined symbols for architecture armv7:
"_SCNetworkReachabilityGetFlags", referenced from:
-[FlurryReachability flurryCurrentReachabilityStatus] in libFlurry_4.2.2.a(libFlurry.a-armv7-master.o)
I am posting the App settings image. Can you please suggest an answer to the error.
Upvotes: 0
Views: 129
Reputation: 3202
You have to add both of these frameworks "SystemConfiguration.framework" And "Security.framework"
Upvotes: 0
Reputation: 2575
You have to add the "SystemConfiguration.framework" file to your project.
On the bottom left corner of the "Link Binary with Libraries" section there should be a "+" sign. Click that and type in SystemConfiguration and click on the result then click "add".
Upvotes: 2