flutter-webrtc / callkeep

iOS CallKit and Android ConnectionService for Flutter
MIT License
133 stars 147 forks source link

ios Runner GeneratedPluginRegistrant.m:12:9: Module 'callkeep' not found #120

Closed greemwahr closed 1 year ago

greemwahr commented 2 years ago

I keep getting this error when I tried to build on XCode. And I have callkeep in my pod file and installed. Below is that part of the code it complains about.

//
//  Generated file. Do not edit.
//

// clang-format off

#import "GeneratedPluginRegistrant.h"

#if __has_include(<callkeep/FlutterCallkeepPlugin.h>)
#import <callkeep/FlutterCallkeepPlugin.h>
#else
@import callkeep;
#endif

@implementation GeneratedPluginRegistrant

+ (void)registerWithRegistry:(NSObject<FlutterPluginRegistry>*)registry {
  [FlutterCallkeepPlugin registerWithRegistrar:[registry registrarForPlugin:@"FlutterCallkeepPlugin"]];
}

@end

Thanks for the assistance.

greemwahr commented 1 year ago

Stale