Override windowSoftInputMode

I’ve got a meteor app I’m building as an Android application, and I’m trying to override the windowSoftInputMode in AndroidManifest.xml. I’ve added

App.setPreference('android-windowSoftInputMode', 'adjustNothing', 'android');

To my mobile-config.js, and it appears as

<preference name="android-windowSoftInputMode" value="adjustNothing"/>

In cordova’s config.xml, but it does not reflect in AndroidManifest.xml

How can I fix this, or is it a cordova bug?

1 Like