All Questions
Tagged with android-ble beacon
5
questions
6
votes
2
answers
716
views
Nearby Messages using an IntentService
Initially I setup a BroadcastReceiver to receive intents from the Nearby Messages API.
class BeaconMessageReceiver : BroadcastReceiver() {
override fun onReceive(context: Context, intent: Intent)...
1
vote
1
answer
409
views
android maximum regions to ranging and monitoring
I want to track all nearby beacons using global region, then i create individual region for each ranged region from the global region, is there any regions limit for android phone ? i've read that in ...
0
votes
1
answer
828
views
How to search custom/manufacturer specific beacon using Altbeacon Android library
I am working on Android trying to search/find beacons nearby and I am using Altbeacon Android library.
The beacon is custom and here is the manufacturer specific:
//---------------flags data type----...
0
votes
1
answer
382
views
Ble distance calculation using Time
Is it possible to calculate distance between BLE-BLE or Beacon-BLE device using Time(T) taken on packet received on receiver device with measured power or RSSI value?
Is there any formula for that?
-2
votes
1
answer
288
views
Nearby scan in foreground service
My android app needs to find a beacon in background. To do so I'm using the google nearby messaging api with beaconId.
To have a scan in foreground I'm subscribing the messages client in a foreground ...