I am building a framework in which I need to import some objective-c frameworks.
For now I need to import "Beaconstac.framework", but we can not add a bridging header in a swift framework project.
How can I use this framework in my project?
I tried:
import Beaconstac
But the compiler reports error "No Such Module"
Is there any alternative way to do this?