Piotr Wittchen
Piotr Wittchen
Hi, Thanks for reporting this issue. It looks like Bluetooth is turned off. Please, take a look at the [Good Practices](https://github.com/pwittchen/ReactiveBeacons#good-practices) section in `README.md` file. You should fulfill requirements mentioned...
Hi, Thanks for reporting that issue. I've seen the similar problem. I think it may be related to the hardware. As you noticed, when the device is close to the...
We can consider that. `MacAddress` class was introduced later. It simply wraps and validates data coming from `device.getAddress()` method. Moreover, `device.hashCode()` method is used in `hashCode()` generation for the `Beacon`...
Hi, Thanks for reporting that issue. I haven't performed any speed or performance measurements regarding using different strategies. I don't know anything related to change of the scan speed. I...
You can try this method: ```java ParcelUuid[] uuids = beacon.device.getUuids(); ``` `Beacon` class has `public final device` field of type `BluetoothDevice`. Reference in Android SDK documentation: https://developer.android.com/reference/android/bluetooth/BluetoothDevice.html#getUuids()
After the quick search, I found out that it's not possible to get iBeacon UUID and Eddystone UID just with Android SDK easily. Probably it could be somehow extracted or...
Initial references (code snippets), which can help in the implementation: **iBeacon**: https://github.com/inthepocket/ibeacon-scanner-android/blob/32e286cd67bfd97255f62f5d470db67921877c34/ibeaconscanner/src/main/java/mobi/inthepocket/android/beacons/ibeaconscanner/ScannerScanCallback.java **Eddystone**: https://github.com/google/eddystone/blob/master/tools/gatt-config/android/BeaconConfig/app/src/main/java/com/github/google/beaconfig/BeaconScanData.java
Hi, Thanks for reporting the issue. What do you mean by "no support"? Currently, the library has limited functionality, but it should detect any kind of BLE devices. Isn't it...
Hi, Thanks for reporting this issue. We can investigate that and consider replacing this adapter for the strategies handling lower APIs. We also need to check if it doesn't change...
Hi, thanks for reporting the issue. Right now, library simply scans beacons around and displays them as soon as they're visible to the scanning device. It's much simpler approach than...