Swiftgram/Support/module.modulemap
Andreas Linde 393a27906e Make swift integration easier
iOS Frameworks use an extra `Modules/module.modulemap` file that is used with the `import` statement to get all required information for integration. We simulate this behavior by writing our own file manually. So in apps using Swift the Objective-C bridging header is not required any longer (when using the binary distribution of the framework).
2014-09-05 01:33:55 +02:00

7 lines
101 B
Plaintext

framework module HockeySDK {
umbrella header "HockeySDK.h"
export *
module * { export * }
}