This repository was archived by the owner on Nov 8, 2023. It is now read-only.
This repository was archived by the owner on Nov 8, 2023. It is now read-only.
getCurrentLocation gets timeout on Android API17 #42
Closed
Description
My app works fine on Android API 22 and higher. Got my hands on phone with API 17. Made a fresh tns create test --ng
project, with "nativescript-geolocation": "^0.0.17"
version. Every request that gets sent, gets timed out.
ngAfterViewInit() {
console.log("View initialized...");
geolocation.getCurrentLocation({
desiredAccuracy: 3,
updateDistance: 1,
maximumAge: 20000,
timeout: 20000
}).then(function(loc) {
console.log("LOC:");
console.log(JSON.stringify(loc, null, 4));
}).catch(function(response){
console.log("E: ", response);
});
}