1

I have just installed Smooch sdk using pods(pod 'smooch'). Installation was perfect but its not visible under pods xcoproject->Target.

I also tried under header, but not able to import under swift project.

I would appreciate if someone can help me.

Thanks & regards Suraj Gupta

suraj Gupta
  • 76
  • 1
  • 9

1 Answers1

1

The Smooch framework is closed source, and is distributed as a pre-compiled framework, so it does not deserve it's own build target under the Pods project. To be able to use Smooch code in Swift, you need to import the framework in your app's Bridging Header file.

#import <Smooch/Smooch.h>
mspensieri
  • 3,501
  • 15
  • 18