I\'m having a problem with ngView in PhoneGap.
Everything seems to be loading just fine and I can even get a basic controller working using ng-controller. But when I
My issue was the domain whitelisting.
Basically your .config needs to look like this:
angular.module('App', []).config(function ($routeProvider, $compileProvider) {
$routeProvider.when('/test', {
controller: TestCtrl,
template: ' {{ test }}
'
});
$compileProvider.urlSanitizationWhitelist(/^\s*(https?|ftp|mailto|file|tel):/);
});