cake_wallet/cw_shared_external/ios/Classes/CwSharedExternalPlugin.m

16 lines
627 B
Mathematica
Raw Normal View History

2022-03-30 15:57:04 +00:00
#import "CwSharedExternalPlugin.h"
#if __has_include(<cw_shared_external/cw_shared_external-Swift.h>)
#import <cw_shared_external/cw_shared_external-Swift.h>
#else
// Support project import fallback if the generated compatibility header
// is not copied when this plugin is created as a library.
// https://forums.swift.org/t/swift-static-libraries-dont-copy-generated-objective-c-header/19816
#import "cw_shared_external-Swift.h"
#endif
@implementation CwSharedExternalPlugin
+ (void)registerWithRegistrar:(NSObject<FlutterPluginRegistrar>*)registrar {
[SwiftCwSharedExternalPlugin registerWithRegistrar:registrar];
}
@end