Solucionado (ver solução)
Solucionado
(ver solução)
3
respostas

Permissão de acesso a internet pelo app Cordova Android

Não estou conseguindo realizar uma requisição pelo app feito em cordova no meu dispositivo android. Nenhum erro é exibido nos alerts, está caindo em fail e a requisição não acontece.

Há algum tipo de permissão de acesso a internet para liberar?

        $.get( "http://cozinhapp.sergiolopes.org/novo-pedido?mesa=19&pedido=Café", function() {
                alert( "success" );
            })
            .done(function() {
                alert( "second success" );
            })
            .fail(function(xhr, status, error) {
                alert(xhr.responseText + ' - ' + status + ' - ' +  error);
            })
            .always(function() {
                alert( "finished" );
            });
3 respostas
solução!

Quando você cria um projeto pelo comando cordova create é adicionado no config.xml o plugin de whitelist que permite definir quais endereços são permitidos.

 <plugin name="cordova-plugin-whitelist" spec="1" />
    <access origin="*" />
    <allow-intent href="http://*/*" />
    <allow-intent href="https://*/*" />
    <allow-intent href="tel:*" />
    <allow-intent href="sms:*" />
    <allow-intent href="mailto:*" />
    <allow-intent href="geo:*" />
    <platform name="android">
        <allow-intent href="market:*" />
    </platform>

Ainda não funcionou, este é meu config.xml

<?xml version='1.0' encoding='utf-8'?>
<widget id="org.rafael.caviquioli.garcom" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
    <name>GarconApp</name>
    <description>
        Aplicativo para pedidos no restaurante
    </description>
    <author email="dev@cordova.apache.org" href="http://cordova.io">
        Apache Cordova Team
    </author>
    <icon src="res/icon.png" />
    <splash src="res/splash.png" />

    <plugin name="cordova-plugin-statusbar" spec="~2.2.1" />
    <plugin name="phonegap-plugin-barcodescanner" spec="~6.0.5" />
    <plugin name="cordova-plugin-vibration" spec="~2.1.3" />
    <plugin name="cordova-plugin-whitelist" spec="1" />
    <access origin="*" />
    <access origin="http://cozinhapp.sergiolopes.org" />
    <allow-intent href="http://*/*" />
    <allow-intent href="https://*/*" />
    <allow-intent href="tel:*" />
    <allow-intent href="sms:*" />
    <allow-intent href="mailto:*" />
    <allow-intent href="geo:*" />
    <platform name="android">
        <allow-intent href="market:*" />
    </platform>

    <preference name="Orientation" value="portrait" />
    <preference name="Fullscreen" value="false" />
    <preference name="BackgroundColor" value="0xF2F2F2FF" />
    <preference name="StatusBarBackgroundColor" value="#E86C13" />
    <platform name="ios">
        <preference name="StatusBarOverlaysWebView" value="false" />
        <preference name="StatusBarBackgroundColor" value="#F57F17" />
    </platform>

</widget>

Bom dia, Não foi adicionado a solução ! Como foi resolvido?