InAppBrowser no funciona

I am trying to use the inAppBrowser Plugin with Cordova 3.4.1, but unfortunately it doesn't work. My config.xml looks like this:

<access origin="*" browserOnly="true"/>
<gap:plugin name="org.apache.cordova.inappbrowser" />
<plugin name="InAppBrowser" value="org.apache.cordova.InAppBrowser" />

The inAppBrowser plugin is installed (I can find it in the plugins/ folder). I try to open my links with:

<a onclick="window.open('http://www.google.de','_system','location=yes');">test</a>
<a onclick="window.open('http://www.google.de','_blank','location=yes');">test</a>

But all links will open in the app itself, not in the system browser.

preguntado el 28 de mayo de 14 a las 11:05

1 Respuestas

Intenta usar <feature name="InAppBrowser"> <param name="ios-package" value="CDVInAppBrowser"/> </feature> in your config.xml file!

Respondido el 11 de junio de 14 a las 14:06

No es la respuesta que estás buscando? Examinar otras preguntas etiquetadas or haz tu propia pregunta.