Swiftgram/Support/module.modulemap
Andreas Linde fe3c1cda7d 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-08 14:34:12 +02:00

7 lines
101 B
Plaintext

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