如何在真实设备上调试地理定位制作离子应用程序?
我正在使用ionic cordova run android --device --livereload
命令使用IP(而不是localhost),我收到Only secure origins are allowed.
错误。
有没有办法在与USB连接的真实设备上调试应用程序?
获取职位的代码:
odswiezGps() {
this.geolocation.getCurrentPosition({
enableHighAccuracy: true
}).then((resp) => {
this.gps = resp;
console.log(resp);
}).catch((error) => {
console.log('Error getting location', error);
});
}