- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试使用 altBeacon 库查找 iBeacon,但收到此错误:
01-31 11:34:08.628 31582-31582/es.deusto.beaconsapp2 I/art: Late-enabling -Xcheck:jni
01-31 11:34:08.700 31582-31582/es.deusto.beaconsapp2 W/System: ClassLoader referenced unknown path: /data/app/es.deusto.beaconsapp2-1/lib/arm
01-31 11:34:08.713 31582-31582/es.deusto.beaconsapp2 D/BeaconParser: Parsing beacon layout: m:2-3=beac,i:4-19,i:20-21,i:22-23,p:24-24,d:25-25
01-31 11:34:08.715 31582-31582/es.deusto.beaconsapp2 D/BeaconParser: Parsing beacon layout: m:2-3=0x0215,i:4-19,i:20-21,i:22-23,p:24-24,d:25-25
01-31 11:34:08.749 31582-31597/es.deusto.beaconsapp2 D/OpenGLRenderer: Use EGL_SWAP_BEHAVIOR_PRESERVED: true
01-31 11:34:08.772 31582-31582/es.deusto.beaconsapp2 W/BluetoothCrashResolver: Can't read macs from BluetoothCrashResolverState.txt
01-31 11:34:08.803 31582-31600/es.deusto.beaconsapp2 W/DistanceConfigFetcher: Can't reach server
01-31 11:34:08.804 31582-31600/es.deusto.beaconsapp2 W/ModelSpecificDistanceCalculator: Cannot updated distance models from online database at java.net.UnknownHostException: Unable to resolve host "data.altbeacon.org": No address associated with hostname
01-31 11:34:08.892 31582-31597/es.deusto.beaconsapp2 I/Adreno-EGL: <qeglDrvAPI_eglInitialize:379>: QUALCOMM Build: 10/21/15, 369a2ea, I96aee987eb
01-31 11:34:08.895 31582-31597/es.deusto.beaconsapp2 I/OpenGLRenderer: Initialized EGL, version 1.4
01-31 11:34:08.985 31582-31582/es.deusto.beaconsapp2 D/BluetoothAdapter: STATE_ON
01-31 11:34:08.987 31582-31594/es.deusto.beaconsapp2 D/BluetoothLeScanner: onClientRegistered() - status=0 clientIf=6
01-31 11:34:08.989 31582-31594/es.deusto.beaconsapp2 W/Binder: Caught a RuntimeException from the binder stub implementation.
01-31 11:34:08.989 31582-31594/es.deusto.beaconsapp2 W/Binder: java.lang.SecurityException: Need ACCESS_COARSE_LOCATION or ACCESS_FINE_LOCATION permission to get scan results
01-31 11:34:08.989 31582-31594/es.deusto.beaconsapp2 W/Binder: at android.os.Parcel.readException(Parcel.java:1620)
01-31 11:34:08.989 31582-31594/es.deusto.beaconsapp2 W/Binder: at android.os.Parcel.readException(Parcel.java:1573)
01-31 11:34:08.989 31582-31594/es.deusto.beaconsapp2 W/Binder: at android.bluetooth.IBluetoothGatt$Stub$Proxy.startScan(IBluetoothGatt.java:772)
01-31 11:34:08.989 31582-31594/es.deusto.beaconsapp2 W/Binder: at android.bluetooth.le.BluetoothLeScanner$BleScanCallbackWrapper.onClientRegistered(BluetoothLeScanner.java:324)
01-31 11:34:08.989 31582-31594/es.deusto.beaconsapp2 W/Binder: at android.bluetooth.IBluetoothGattCallback$Stub.onTransact(IBluetoothGattCallback.java:56)
01-31 11:34:08.989 31582-31594/es.deusto.beaconsapp2 W/Binder: at android.os.Binder.execTransact(Binder.java:453)
我下载了 altBeacon 库并移动到我的项目的“library”文件夹中。然后我将 compile 'org.altbeacon:android-beacon-library:2+'
行放入应用程序的 gradle 中。我使用的类是:
public class MainActivity extends Activity implements BeaconConsumer{
private static final String TAG = "BeaconReferenceApp";
private BeaconManager beaconManager;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
beaconManager = BeaconManager.getInstanceForApplication(this);
beaconManager.getBeaconParsers().clear();
//i think that i should use "0x0215"
beaconManager.getBeaconParsers().add(new BeaconParser().
setBeaconLayout("m:2-3=0x0215,i:4-19,i:20-21,i:22-23,p:24-24,d:25-25"));
beaconManager.bind(this);
//I link the activity with the layout
setContentView(R.layout.activity_main);
}
@Override
protected void onDestroy() {
super.onDestroy();
beaconManager.unbind(this);
}
@Override
public void onBeaconServiceConnect() {
//I use the ID of my beacon
final Region region = new Region("myBeacons", Identifier.parse("A7AE2EB71F004168B99BA749BAC1CA64"), null, null);
beaconManager.setMonitorNotifier(new MonitorNotifier() {
@Override
public void didEnterRegion(Region region) {
try {
Log.d(TAG, "didEnterRegion");
beaconManager.startRangingBeaconsInRegion(region);
} catch (RemoteException e) {
e.printStackTrace();
}
}
@Override
public void didExitRegion(Region region) {
try {
Log.d(TAG, "didExitRegion");
beaconManager.stopRangingBeaconsInRegion(region);
} catch (RemoteException e) {
e.printStackTrace();
}
}
@Override
public void didDetermineStateForRegion(int i, Region region) {
}
});
//i set the notifier
beaconManager.setRangeNotifier(new RangeNotifier() {
@Override
public void didRangeBeaconsInRegion(Collection<Beacon> beacons, Region region) {
for (Beacon oneBeacon : beacons) {
Log.d(TAG, "distance: " + oneBeacon.getDistance() + " id:" + oneBeacon.getId1() + "/" + oneBeacon.getId2() + "/" + oneBeacon.getId3());
}
}
});
try {
beaconManager.startMonitoringBeaconsInRegion(region);
} catch (RemoteException e) {
e.printStackTrace();
}
}
}
最佳答案
Android 6 现在要求应用程序扫描 BLE 信标以获得访问位置的运行时权限。
您可以在我的博客文章中阅读有关如何执行此操作的完整详细信息:
http://developer.radiusnetworks.com/2015/09/29/is-your-beacon-app-ready-for-android-6.html}
关于java - android-Altbeacons 路径错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35113242/
我一直在尝试使用 altbeacon library 连接到 Jaalee 信标没有成功。服务 UUID 为 0x00001532-1212-EFDE-1523-785FEABCD123altbeac
我正在尝试使用 Altbeacon 解析 Estimote Nearable 数据包格式: 我有 IBeacon 的引用: // Apple iBeacon beaconManager.getBeac
我正在尝试使用自定义数据创建 AltBeacon。我看到了 AltBeacon 协议(protocol)格式( https://github.com/AltBeacon/spec ),但我不知道如何模
我正在尝试使用 AltBeacon/android-beacon-library。我从 reference app 开始.按照所有说明设置应用程序,但它仍然找不到周围的任何信标。我也试过定位应用程序,
我正在开发一个也使用后台扫描的应用程序。参见 Using AltBeacon: start and stop scanning from app settings 我观察到一个奇怪的行为。当我从设备设
我想扫描我周围的任何一种信标。基本上,如果我理解正确的话,您需要在扫描之前知道他们的 ID?你将如何扫描你周围的任何信标并提取他们的 UUID/Factory Id/等等? 这是我当前的代码: pub
我正在尝试使用 Radius Networks ( http://altbeacon.github.io/android-beacon-library/index.html ) 制作的适用于 Andr
我正在使用 iBeacons 撰写有关室内导航的学士论文。为此,我使用三边测量来找到我的位置。我一直在使用 android beacon 库(现在称为 AltBeacon 库)来检测信标并计算距离。我
这是我用来检测进入区域事件的示例代码: public class BeaconApplication extends android.app.Application implements Bootst
我的应用程序有一些问题。在我禁用 regionBootstrap 并通过 System.exit(0) 关闭应用程序后,我的应用程序会在几分钟后(通常是 3-4 分钟)自行重启。 这是我每次重新启动应
我正在使用 AltBeacon 库来监视信标区域并在它进入和离开该区域时收到通知。问题是我有时会收到错误的“ExitRegion”事件。有时我也没有收到“EnterRegion”事件。 例如,当信标插
我想知道信标代码代表什么。我的意思是,据我所知,它应该识别信标布局。这是否意味着我可以自定义任何类型的布局并为其分配任何类型的信标代码?我的意思是,我可以写这样的东西吗: setBeaconLayou
使用测距信标,从理论上讲,它工作正常。我有 3 个信标,一个简单的算法可以在最短距离内一次只检测一个信标,但由于 RSSI 值的连续波动,我最终会非常频繁地检测到其他信标。好吧,如果我可以在检测之间多
我正在使用此处的 AltBeacon 库开发一个简单的信标接近应用程序 https://altbeacon.github.io/android-beacon-library/samples.html
我的代码或信标返回“错误”值(用引号引起来,因为这很可能是我的代码中的错误)有问题。我一直在阅读信标,据我所知,我可以给我的信标 3 个标识符。我已将信标的标识符配置为 000000000000001
我尝试使用 altBeacon 库查找 iBeacon,但收到此错误: 01-31 11:34:08.628 31582-31582/es.deusto.beaconsapp2 I/art: Late
我正在使用 Altbeacon我的应用程序用于扫描信标的库。我已经成功地在有广告时扫描并推送通知。我的要求是我需要扫描一个 UUID 列表,但文档中给出的示例仅使用一个 UUID 进行扫描。 这是我到
我正在尝试发现我的设备与我在办公室为实习项目设置的信标之间的距离。我对 Android 工作室和 Java 还是很陌生。信标来自苹果(iBeacon)。但是我只设法找出其中一个信标,即使我打开了五个信
Ì 我正在尝试连接我的 Android 应用程序中的信标。但我似乎找不到我的信标。我正在使用 Ibeacons。我正在使用 AltBeacon 库。 onBeaconServiceConnect 开始
我正在尝试创建应用程序来定位信标并获取其距离,为此我正在使用 altbeacon 库。通过使用代码,我得到了附近信标的详细信息,但我没有得到距离。这是我的代码和堆栈跟踪。我的代码中有什么问题可以帮助我
我是一名优秀的程序员,十分优秀!