InAppBrowser no funciona
Frecuentes
Visto 646 equipos
2
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.
1 Respuestas
2
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 cordova phonegap-plugins phonegap-build inappbrowser or haz tu propia pregunta.