I want to import some swift classes in objective-c project. I added all classes, I created the bridging-header, I imported the MyTarget-swift.h file in my classes and everything seems working fine.
When I'm building the project, I found a very strange error on generated swift.h file:
StoreKit framework is already added to project. I have no idea what is going on. Anybody has any idea?

The right answer is this: https://stackoverflow.com/a/24195188/4563329
That helped me to fix my problem. I will post my fixed file here:
I created another header file in objective-c named
ModuleTargetName-Swift-Fixed.hInside of it first I importedStoreKitand after I importedModuleTargetName-Swift.h. In my objective-c classes I importedModuleTargetName-Swift-Fixed.hThis is my class: