How to import a swift file into the class of library installed by pods of (Objective C)

I am working on a project which is developed on swift. We have a pods installed the project for Chat21 Library for chatting stuff. we are trying to modify the design and wants to add some external features by swift file in a main View controller of Chat21 library.

But when I am trying to import the swift file in Chat21's any view controller's, it's throwing an error.as below

'Module/Module-Swift.h' file not found

We have performed some of the configuration changes in Chat21's pods package like :

(1) Always Embed Swift Standard Libraries = YES in the target build settings.

(2) Defines Modules = YES

and finally trying to import like : #import <Module/Module-Swift.h>

and its throwing an error

Can anyone help me on this stuff?

Any help would be appreciated.

How to import a swift file into the class of library installed by pods of (Objective C)
 
 
Q