After Migrate , ionic 5 Cordova to Capacitor IOS build not working

In xode ,@implementation CDVNativeKeyboard i am getting error , No visible @interface for ‘CDVViewController’ declares the selector ‘parseInterfaceOrientations:’

No visible @interface for ‘CDVViewController’ declares the selector ‘parseInterfaceOrientations:’
NSArray * ors = [[[NSBundle mainBundle] infoDictionary] objectForKey:@“UISupportedInterfaceOrientations”];
NSArray * suppOrientations = [((CDVViewController*)self.viewController) parseInterfaceOrientations:ors];

Which keyboard plugin are you using?
cordova-plugin-ionic-keyboard is not supported and should skip copying its files, but if it’s a different one then it’s probably not skipping it.
There is @capacitor/keyboard plugin which is basically the same plugin.

1 Like

thank you so much @julio-ionic