I'm trying to import Sinch to my framework target in Xcode.
It work fine with
pod 'SinchRTC'
and
#import <Sinch/Sinch.h>
in Project-Bridging-Header.h in my main project target
but when I try to do the same thing with framework target by add
#import <Sinch/Sinch.h>
to framework umbrella header instead of bridging header.
I get this message
"Include of non-modular header inside framework module 'MyFramework': "
I did try to set allow modular framework setting to TRUE, but still doesn't work.
Thank you,