我使用离子本机ibeacon库来检测信标。我可以用android检测信标但是当我在ios中尝试时,我总是看到一个空的信标数组。我试过这些东西,但仍然看不到ios中的信标(设备是iphone 6s加上11.4.1)(设备上启用了蓝牙服务)
我的代码是这样的,它在Android设备上工作
import { Injectable } from '@angular/core';
import { Platform, Events } from 'ionic-angular';
import { IBeacon } from "@ionic-native/ibeacon";
@Injectable()
export class BeaconProvider {
delegate: any;
region: any;
constructor(
public platform: Platform,
public events: Events,
private iBeacon: IBeacon
) {
this.initialise();
}
initialise(): any {
let promise = new Promise((resolve, reject) => {
if (this.platform.is("cordova")) {
this.iBeacon.requestAlwaysAuthorization();
// ALSO try this one too this.iBeacon.requestWhenInUseAuthorization();
this.delegate = this.iBeacon.Delegate();
this.delegate.didRangeBeaconsInRegion().subscribe(
data => {
this.events.publish("didRangeBeaconsInRegion", data);
//console.log("didRangebeacons__" + JSON.stringify(data)); // empty beacons array
},
error => console.error()
);
this.region = this.iBeacon.BeaconRegion("deskBeacon", "e2c56db5-dffb-48d2-b060-d0f5a71096e0");
this.iBeacon
.startRangingBeaconsInRegion(this.region)
.then(
() => {
resolve(true);
},
error => {
console.error("Failed to begin monitoring: ", error);
resolve(false);
}
);
} else {
resolve(false);
}
});
return promise;
}
}
编辑我的位置服务,我在ios或android(离子,相同的代码)中使用相同的uuid。通过我试图通过市场上的应用程序制作iphone作为信标发射器的方式,其他iphone可以将其视为信标。这是beacon范围应用程序的屏幕截图
在iOS上要检查的一些事情:
编辑:更多的步骤