5

我正在尝试使用以下iBeaconGap cordova 插件,它是 RadiusNetworks Android iBeacons 库的包装器。我的手机已准备好 LE 蓝牙,并使用 Play 商店中的 RadiusNetwork Detector 应用程序检测我的信标。

但是将它添加到我的普通科尔多瓦项目会导致以下日志消息:“尝试通过意图回调:ComponentInfo{com.tecalliance.lucidbeacon/com.radiusnetworks.ibeacon.IBeaconIntentProcessor}”。看起来它的起源是 RadiusNetworks 的Callback.java类。

插件安装程序已正确更新 AndroidManifest.xml 文件:

<service android:enabled="true" android:exported="true" 
         android:name="com.radiusnetworks.ibeacon.IBeaconIntentProcessor">

         <meta-data android:name="background" android:value="true" />
         <intent-filter android:priority="1">
            <action android:name="com.thinketg.plugin.ibeacongap.DID_RANGING" />
            <action android:name="com.thinketg.plugin.ibeacongap.DID_MONITORING" />
         </intent-filter>
</service>

<service android:enabled="true" android:exported="true" 
         android:isolatedProcess="false" android:label="iBeacon" 
         android:name="com.radiusnetworks.ibeacon.service.IBeaconService" />

<service android:enabled="true"   
         android:name="com.radiusnetworks.ibeacon.IBeaconIntentProcessor">

         <meta-data android:name="background" android:value="true" />
         <intent-filter android:priority="1">
            <action android:name="com.thinketg.plugin.ibeacongap.DID_RANGING" />
            <action android:name="com.thinketg.plugin.ibeacongap.DID_MONITORING" />
         </intent-filter>
</service>

<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />

我使用 github 上建议的插件,但 gotBeacons() 和 failedGettingBeacons() 都没有被调用。

function startBeaconScans() {
    iBeaconGap.getBeacons(gotBeacons, failedGettingBeacons);
}

知道如何解决这个问题吗?提前致谢 ;-)

4

0 回答 0