I am working with swift 3.2. I have made a bridging header file which has the following:
#import <CommonCrypto/CommonCrypto.h>
In my projects build setting I am pointing to my bridging header file but i am still getting the error 'No such module CommonCrypto'
in my classes where I am using import CommonCrypto
update: header file:
#ifndef ProjectName_Bridging_Header_h
#define ProjectName_Bridging_Header_h
#import <CommonCrypto/CommonCrypto.h>
#endif