Módulo cordova / exec / proxy no encontrado usando Cordova phonegap

Soy nuevo en Cordova y Phonegap y estoy tratando de desarrollar una aplicación sencilla que crea un contacto y ejecutarlo en mi Android ( mirando este ejemplo ) Tengo mi aplicación cargada en mi teléfono, mi aplicación se inicializa (la inicialización del evento ha sido Recibido) pero antes de cualquier otro evento recibo esta execión:

05-07 17:52:17.870: E/Web Console(22339): Uncaught module cordova/exec/proxy not found at file:///android_asset/www/cordova.js:55 

Aquí está mi index.js

 var app = { // Application Constructor initialize: function() { this.bindEvents(); }, // Bind Event Listeners // // Bind any events that are required on startup. Common events are: // 'load', 'deviceready', 'offline', and 'online'. bindEvents: function() { document.addEventListener('deviceready', this.onDeviceReady, false); console.log(" bindEvents ..."); }, // deviceready Event Handler // // The scope of 'this' is the event. In order to call the 'receivedEvent' // function, we must explicity call 'app.receivedEvent(...);' onDeviceReady: function() { console.log("onDeviceReady ..."); app.receivedEvent('deviceready'); var myContact = navigator.contacts.create({"displayName":"Test User"}); myContact.note = "this contact has a note."; console.log("the contact, " + myContact.displayName + ", note: " + myContact.note); app.receivedEvent("contactcreated"); myContact.save(app.onContactSaveSuccess,app.onContactSaveError); }, // Update DOM on a Received Event receivedEvent: function(id) { console.log("receivedEvent ..."); var parentElement = document.getElementById(id); var listeningElement = parentElement.querySelector('.listening'); var receivedElement = parentElement.querySelector('.received'); listeningElement.setAttribute('style', 'display:none;'); receivedElement.setAttribute('style', 'display:block;'); console.log('Received Event: ' + id); }, onContactSaveSuccess: function(contact) { console.log("onContactSaveSuccess ..."); window.alert("Save Success"); }, onContactSaveError: function(contact) { console.log("onContactSaveError ..."); window.alert("Save Failed"); }, 

};

Preguntas:

  1. ¿ Cuál es el módulo proxy proxy de cordova ?

  2. ¿Cómo es posible resolverlo?

Aquí está mi versión cordova: 3.1.0-0.2.0

FlipAndroid es un fan de Google para Android, Todo sobre Android Phones, Android Wear, Android Dev y Aplicaciones para Android Aplicaciones.