离子ios应用程序中的didRangeBeaconsInRegion事件中的信标数组为空

问题描述 投票:0回答:1

我使用离子本机ibeacon库来检测信标。我可以用android检测信标但是当我在ios中尝试时,我总是看到一个空的信标数组。我试过这些东西,但仍然看不到ios中的信标(设备是iphone 6s加上11.4.1)(设备上启用了蓝牙服务)

  • 我尝试了requestWhenInUseAuthorization和requestAlwaysAuthorization。
  • 我在info.plist中添加NSLocationAlwaysUsageDescription和NSLocationWhenInUseUsageDescription键

我的代码是这样的,它在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范围应用程序enter image description here的屏幕截图

ios ionic-framework ibeacon ionic-native
1个回答
2
投票

在iOS上要检查的一些事情:

  1. 转到设置,位置,然后检查您的应用是否已获得位置许可。
  2. 确保蓝牙已打开
  3. 尝试像Locate Beacon这样的第三方信标扫描器,使用您的UUID进行配置,并确保它可以使用相同的设备检测您的信标。

编辑:更多的步骤

  1. 确保iOS在“设置”中启用了“位置”(整体设置,而不仅仅是针对您的应用)设置 - >隐私 - >位置服务
  2. 由于您可以在Android而不是iOS上进行检测,请仔细检查您在Android上看到的UUID,并确保它与您在iOS上输入的内容完全匹配。
  3. 如果配置中的UUID匹配,但仍然无法检测到,请确认信标实际上是在发送iBeacon帧而不是AltBeacon,或者默认情况下iPhone不会看到某种格式。如果您使用Android的Beacon Scope app,它会告诉您帧类型。

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.