I try to use angular.js with PhoneGap.It works fine at chrome browser.But it doesn\'t work at ng-view tag.And angular module doesn\'t called when I run it on the simula
Try the bootstrap api method to manually start the app on deviceReady. something like:
function onDeviceReady() { ... angular.bootstrap(document, ['ngView']); ... } document.addEventListener("deviceready", onDeviceReady, true);
http://docs.angularjs.org/api/angular.bootstrap