| 1 | #import "CwSharedExternalPlugin.h" |
| 2 | #if __has_include(<cw_shared_external/cw_shared_external-Swift.h>) |
| 3 | #import <cw_shared_external/cw_shared_external-Swift.h> |
| 4 | #else |
| 5 | // Support project import fallback if the generated compatibility header |
| 6 | // is not copied when this plugin is created as a library. |
| 7 | // https://forums.swift.org/t/swift-static-libraries-dont-copy-generated-objective-c-header/19816 |
| 8 | #import "cw_shared_external-Swift.h" |
| 9 | #endif |
| 10 | |
| 11 | @implementation CwSharedExternalPlugin |
| 12 | + (void)registerWithRegistrar:(NSObject<FlutterPluginRegistrar>*)registrar { |
| 13 | [SwiftCwSharedExternalPlugin registerWithRegistrar:registrar]; |
| 14 | } |
| 15 | @end |