Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

PhoneGap Build Help

Options
  • 03-07-2014 9:09pm
    #1
    Registered Users Posts: 437 ✭✭


    Hi there,

    I've built a small application using PhoneGap. It works perfectly in the browser, and also under the Ripple emulator. However, I cannot get the event listeners to work when I put the app on my Samsung Galaxy S2.

    listeners.js
    //Add event listeners
    document.addEventListener("deviceready", onDeviceReady, false);
    document.addEventListener("online", onOnline, false);
    document.addEventListener("offline", onOffline, false);
    
    
    //Execute this function when the device is ready.
    function onDeviceReady() {
    
        //Initial check on internet connection
        if (checkConnection() == false) {
            $(document).transition('to', "nointernetconnectionpage", "pop");
        }
    }
    
    function onOnline() {
        goBack();    
    }
    
    function onOffline() {
        $(document).transition('to', "nointernetconnectionpage", "slide");
    }
    
    function checkConnection() {
        var networkState = navigator.network.connection.type;
    
        if (networkState == "none") {
            return false;
        }
        return true;
    }
    

    Pretty simple stuff but the phone shows no reaction to disabling/enabling internet connections. I have a feeling it's something to do with the inclusion of cordoba.js/phonegap.js. I haven't got it as a library locally, but I'm including it as follows in index.html's <head> tag:
            <script type="text/javascript" charset="utf-8" src="cordova.js"></script>
    

    Also tried including it just before </body>, to no avail.

    Does anyone have any ideas here? I'm assuming PhoneGap Build automatically packages this library?

    Cheers,

    t1mm


Advertisement