twonly-app-dependencies/audio_waveforms/ios/Classes/AudioWaveformsPlugin.m
2026-08-22 20:30:14 +02:00

15 lines
606 B
Objective-C

#import "AudioWaveformsPlugin.h"
#if __has_include(<audio_waveforms/audio_waveforms-Swift.h>)
#import <audio_waveforms/audio_waveforms-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 "audio_waveforms-Swift.h"
#endif
@implementation AudioWaveformsPlugin
+ (void)registerWithRegistrar:(NSObject<FlutterPluginRegistrar>*)registrar {
[SwiftAudioWaveformsPlugin registerWithRegistrar:registrar];
}
@end