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
0
votes
1 answer

AltBeacon blocking HTTP Requests

In my application I have two Services. One is public AndroidUpnpService upnpService; which is from the Cling Library and scans the WLAN for other UPnP devices. I am binding it like this getApplicationContext().bindService( new…
b-m-f
  • 1,278
  • 2
  • 13
  • 29
0
votes
1 answer

Full-Screen Lock Screen Beacon Based Notification on Android

We are wondering whether it would be possible to create an app for Android that prompts a notification on the lock screen in the form of a full screen image? This in turn would be triggered by a beacon. Brief concept design here:
0
votes
2 answers

Start an app in the background after detecting beacon

So have a class that extends Application and implements BootstrapNotifier and RangeNotifier that works on the background. When the app is first open it works fine and detects well the beacons and the information of the beacon but now need it to…
H.C
  • 565
  • 7
  • 28
0
votes
1 answer

background beacon detection failing some times

using the altbeacon lib in the background it only detects the beacons only some of the times or at least only fires the app to the frontground only some times. Below is the logs when it doesn't detect and when it detected well. 04-20 17:10:07.335 …
H.C
  • 565
  • 7
  • 28
0
votes
1 answer

Query regarding AltBeacon

I have been reading quite a few things on iBeacon, AltBeacon and URIBeacon. Now as far as I understand, iBeacon is proprietory while other two are open source. URIBeacon is still in its research stage. As I am mostly looking to support Android…
Sam
  • 4,302
  • 12
  • 40
  • 74
0
votes
1 answer

Issues with AltBeacon sample running on simulator

I am using Android Studio (IntelliJ) IDE for building an android app which uses AltBeacon to detect beacons. I am trying out this sample and trying to understand the basics behind it. I am running the sample of android simulator (ADT 1.1.0 and…
Sam
  • 4,302
  • 12
  • 40
  • 74
0
votes
1 answer

update the layout while reading distances from Beacon

So basicaly whant to update the layout that is a ImageView but for that need to stop ranging for the beacons, and was using beaconManager.unbind(context) and afther updating the image bind again beaconManager.bind(context) the probleam is that this…
H.C
  • 565
  • 7
  • 28
0
votes
3 answers

Stop launching activity again and again if beacon is in 1 meter

I have two beacons and when this first beacon comes within 1 meter i fired first activity and when second beacon comes within 1 meter i fired second activity. Now what i want is if first activity is fired once then application should not launch…
0
votes
1 answer

Fail to Detect Beacon

Using the code from https://altbeacon.github.io/android-beacon-library/samples.html trying to detect a IBeacon emitter that is ios 8 as follow http://blog.passkit.com/configure-iphone-ibeacon-transmitter/ and am a bit loss in what step is wrong, do…
H.C
  • 565
  • 7
  • 28
0
votes
1 answer

Altbeacon, how do I handle finding No Beacons? An else statement to if (beacons.size() > 0) {

I am new to Android Programming and the Altbeacon Library. I can range the beacon I want, but I need to handle not having the beacon in the area and display a dialog. I can display a dialog without issue, but I can't figure out how to catch a No…
davidbii
  • 105
  • 1
  • 1
  • 5
0
votes
1 answer

Altbeacon warning: Can't read macs from BluetoothCrashResolverState.txt

I tried to follow the steps as stated here, https://github.com/RadiusNetworks/bluetooth-crash-resolver but couldn't succeed. I copied the file BluetoothCrashResolver.java from bluetooth package and pasted it in my codebase(src/main/myProject) and…
rubikskube
  • 372
  • 1
  • 5
  • 22
0
votes
1 answer

how to add android beacon library in Eclipse

I have followed the exact steps mentioned at https://github.com/AltBeacon/android-beacon-library-reference/tree/eclipse but still i am unable to use android beacon library. When i try to add android beacon library in my project…
Manish Butola
  • 557
  • 6
  • 15
0
votes
1 answer

Auto launch an activity when beacon comes in a certain distance

I want my application to auto launch an activity when beacon comes within a certain distance (in my case it is 1 meter) My activity gets launched when i plug in or plug off the charger and when i boot the device but it didn't get auto launch when i…
0
votes
1 answer

didRangeBeaconsInRegion and REST webservice

I'm trying to call a rest service within this method and is returning the following error: public void didRangeBeaconsInRegion(Collection beacons, Region region) { for (Beacon beacon: beacons) { logToDisplay( "ok, detectou beacons"…
0
votes
3 answers

Beacons didEnterRegion and didExitRegion repeatedly called

I am trying to notify the user when the user enters a region defined and also when the user exits the region. This is what i have done so far. I used to use the rangeNotifier method (didBeaconsEnterRange) in order to notify a user when he/she enters…