I coded an application with phonegap.
I have a phone numbers list that I receive from a server. when an item from a list is clicked the controller trigers this function:
$scope.call = function(number){
document.location.href = 'tel:' + number;
}
on an iPhone it's ok, but on an Android I get:
unsafe:tel:+97235726333
why? Is it a utf-8 encoded problem?