DipakSonara
DipakSonara

Reputation: 2596

After Crittercism update to 5.6.2, compiler error "Could not build module 'Crittercism'" appeared

I have performed pod update for Crittercism to latest version 5.6.2 and my project has compiler error shown in screen-shot.enter image description here

FYI : I am checking my project in Xcode 8.

Upvotes: 2

Views: 124

Answers (1)

Meet
Meet

Reputation: 4934

Try to wrap your Pod files with appropriate targets.

target “TARGET_NAME” do
    pod 'XYZ', '~> 1.'
end

Follow this steps:

  1. Remove pod
  2. Clean Derived data.
  3. Re-install pod again.

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

Related Questions