I have an application that ran an InAppBrowser perfectly fine in cordova 3.3, but after upgrading, failing, and creating an entire new application, the inappbrowser still is not working!
The plugin is correctly added via CLI. when I check the current plugins via CLI it shows up too. However when I run the application nothing happens! Under platforms/android/res/xml the config.xml only shows:
<feature name="App">
</feature>
<feature name="Calendar">
<param name="android-package" value="nl.xservices.plugins.Calendar" />
</feature>
So I tried adding:
<feature name="InAppBrowser">
<param name="android-package" value="org.apache.cordova.InAppBrowser" />
</feature>
but only I build the application the added reference is automatically removed. I'm lost! Please Help!