I've upgraded Cordova to 4.2.0 and my iOS project has been upgraded to 3.7.0. Everything seems to work fine except the iOS keyboard is now showing the form accessory bar in iOS 8 (next previous arrows with done button).
In config.xml, HideKeyboardFormAccessoryBar is set to true which is still working as expected for the app on iOS 7. Now on iOS 8, the bar in not hidden.
<preference name="HideKeyboardFormAccessoryBar" value="true" />
I've also set it within the js:
Keyboard.hideFormAccessoryBar(true);
After further research, I've learned that the Keyboard plugin is no longer being maintained. Is there another way to hide this form accessory bar on iOS 8? It's not a big problem but makes it obvious that the app is non-native and I'd like to avoid that.