Hi

I'm trying the new iOS build and the fist thing I have noticed is that the 
following method returns false:

    private Boolean detectaInternet() {
        String detectaInternet = NetworkManager.getAutoDetectURL();        
        internet = true;
        ConnectionRequest cr = new ConnectionRequest() {
            @Override
            protected void handleIOException(IOException err) {
                internet = false;
            }            
        };
        cr.setPost(false);        
        cr.setUrl(detectaInternet);
        NetworkManager.getInstance().addToQueueAndWait(cr);
        return internet;
    }


This is not working either:

WebBrowser browser = new WebBrowser();
browser.setURL(url);

Building with iphone, woks fine

Thanks

-- 
You received this message because you are subscribed to the Google Groups 
"CodenameOne Discussions" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
Visit this group at https://groups.google.com/group/codenameone-discussions.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/codenameone-discussions/07444ae1-dd5e-486d-887f-0da917e1dba4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to