Questions tagged [altbeacon]

The Open and Inter-operable Proximity Beacon Specification.

AltBeacon is a protocol specification that defines a message format for proximity beacon advertisements. AltBeacon proximity beacon advertisements are transmitted by devices for the purpose of signalling their proximity to nearby receivers. The contents of the emitted message contain information that the receiving device can use to identify the beacon and to compute its relative distance to the beacon. The receiving device may use this information as a contextual trigger to execute procedures and implement behaviours that are relevant to being in proximity to the transmitting beacon.

746 questions
6
votes
1 answer

AltBeacon onBeaconServiceConnect not called

I stuck implementing simple Beacon monitor with AltBeacon library using its examples. In short: I took its reference application, downloaded and integrated its latest build and run app on my Samsung Galaxy S2 with CM (Android 4.4.4). I see that…
5
votes
1 answer

Bluetooth scan methods - PendingIntent or ScanCallback?

my application scans BLE devices in background. I don't understand what determines the choice between these two methods: advantage / disadvantage. (I tested both and it works) public int startScan (List filters, ScanSettings…
Sebastien
  • 133
  • 1
  • 8
5
votes
1 answer

Can I transmit a beacon signal from my android device while at the same time scanning nearby beacons?

Is it possible to transmit and receive beacon signals at the same time using an android device acting as a beacon?
5
votes
1 answer

AltBeacon's Android Beacon Library getting major, minor and UUID

The first thing I would say is that it is the first time I am using the beacons. I'm using the library AltBeacon Currently I have several things working, for example, when I enter a region or when I leave it .. also get the distance to the beacon…
Sergio76
  • 3,835
  • 16
  • 61
  • 88
5
votes
3 answers

What's the purpose of setReportDelay for BluetoothLeScanner in Android

What's the purpose of setReportDelay for BluetoothLeScanner in Android? I can't imagine why one would get reports with delay...
5
votes
1 answer

Monitoring iBeacons with Altbeacon library

I am testing the Android Beacon Library from AltBeacon http://altbeacon.github.io/android-beacon-library/index.html I am monitoring one "generic" region setting only the first id (UUID), and levaing id2, and id3 as null. Region region = new…
OverMind
  • 135
  • 2
  • 8
4
votes
1 answer

What does ScanPeriod and BetweenScanPeriod mean in AltBeacon Library?

Do the "setForegroundScanPeriod" and "setForegroundBetweenScanPeriod" in the AltBeacon library match to the Scan Window and Scan Interval of the BLE standard? Also, does this refer to a scan event for each of the 3 advertising channels or will a…
Luis Lopez
  • 43
  • 3
4
votes
0 answers

Gatt 133 exception on read characteristic and followed by gatt 22

Problem: I am getting a GATT exception 133 when trying to read the characteristics. I made a delay to read but unfortunately it doesn't works followed by the GATT 22 error. It happens on few devices but i don't know how to solve this problem.…
prasanthMurugan
  • 597
  • 6
  • 21
4
votes
1 answer

CycledLeScannerForLollipop: Scan failed: app cannot be registered (Alt-Beacon Library)

I am using Alt-Beacon Library, and getting this error and unable to detect beacons, CycledLeScannerForLollipop: Scan failed: app cannot be registered Platform: OnePlus5 Android 7.1.1 Could anyone suggest me how to resolve this.
g4gaj
  • 85
  • 2
  • 11
4
votes
1 answer

Detect iBeacons without knowing UUID. Some apps are doing so

I looked into the answer for this question and in most of the answers, I found that it is not possible to detect the iBeacon without knowing the UUID of the device. But some of the apps on App Store is doing the same. Here are the links for those…
Rajan Kambaliya
  • 157
  • 1
  • 12
4
votes
1 answer

setRangeNotifier(RangeNotifier) has been deprecated?

I am using the alt.beacon library and now I get this warning: warning: [deprecation] setRangeNotifier(RangeNotifier) in BeaconManager has been deprecated. But what is the replacement? I need to range the beacons from a region and the callback…
gmmo
  • 2,577
  • 3
  • 30
  • 56
4
votes
3 answers

How can i send notification using a Eddystone URL?

I am trying to send notification to android devices by using a Eddystone URL. What have i tried so far: I have tried transmitting a Eddystone URL using the altbeacon library. I have transmitted a Eddystone URL using the Locate App. The above…
4
votes
0 answers

The BeaconManager is not bound to the service. Call beaconManager.bind(BeaconConsumer consumer) and wait for a callback to onBeaconServiceConnect()

I wish to create an activity which displays tabs. on one tab beacons should be scanned and other tab should host another activity Java Code package com.example.root.myperformancearrayadapter; import android.app.TabActivity; import…
4
votes
0 answers

Android 6.0 Marshmallow - cannot connect to a bluetooth peripheral when another app is scanning

I have an app that runs a continuous bluetooth le scanning in a background service, with SCAN_MODE_LOW_POWER (similar to AltBeacon). As long as the service is running, I cannot connect to my bluetooth peripherals with different apps such as nRF…
4
votes
0 answers

AltBeacon getDistance() showing values as infinity

I am using AltBeacon library to detect nearby beacons. The app works and is able to detect my beacons. However, it is not able to calculate distance - I am getting distance measurement value as "Infinity". This is my code…
Ninja
  • 5,082
  • 6
  • 37
  • 59
1
2
3
49 50