I am developing mobile applicaiton using onsen ,angularjs with Cloud Monaca IDE
my application connect to data base using https reqests
when I test the application t on the simulator device
but when I try it on my android mobile I get error when trying connect to https urls
how can I fix this problem?
function getUsernamePassword(username, password){
return $http({
method: 'GET',
url: "https://xxx.xxx.xxx.xxx:8444/api/checkPassword/" + username+"/"+password
}).then(function successCallback(response) {
return response;
}, function errorCallback(response) {
console.log('login faield');
});
}