我在Ionic 3应用程序中使用Cordova地理位置插件。它可以在某些android设备上运行,但不能在OnePlus A5010上运行
我收到错误消息“仅允许安全来源”。
我已经在我的应用中实现了SSL。
import { Geolocation } from '@ionic-native/geolocation';
let locationOptions = {timeout: 10000, enableHighAccuracy: true};
this.geolocation.getCurrentPosition(locationOptions).then((position) => {
}).catch((error) => { console.log('Error getting location', error); });
有人可以帮我解决这个问题吗?