mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-08 08:31:13 +00:00
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).
7 lines
101 B
Plaintext
7 lines
101 B
Plaintext
framework module HockeySDK {
|
|
umbrella header "HockeySDK.h"
|
|
|
|
export *
|
|
module * { export * }
|
|
}
|