Reputation: 2596
I have performed pod update for Crittercism to latest version 5.6.2 and my project has compiler error shown in screen-shot.
FYI : I am checking my project in Xcode 8.
Upvotes: 2
Views: 124
Reputation: 4934
Try to wrap your Pod files with appropriate targets.
target “TARGET_NAME” do pod 'XYZ', '~> 1.' end
Follow this steps:
This should clear the error, since declaration is correct.
UPDATE: Try adding New line to CrittercismSDK/CrittercismVersion.h
#define CRITTERCISM_VERSION @"5.6.2"[Hit enter here. Unlock and save the file.]
Upvotes: 0