Questions tagged [android-ibeacon]

An Android library providing APIs to interact with iBeacon technology.

About

With Radius Networks' Android Beacon Service library, you can make Android versions of your iOS apps that use iBeacon technology, or come up with new Android-only creations.

It allows Android devices to use iBeacon technology much like iOS devices do. An app can request to get notifications when one or more proximity beacons appear or disappear. An app can also request to get a ranging update from one or more beacons at a frequency of 1Hz.

Links

Website

Documentation

292 questions
0
votes
1 answer

How to reduce the range detection interval in beacon for Android

I have using Android Beacon Library for one of my beacon solution . I can see that if I enter the beacon range ..it calls the "didEnterRegion" function but it never enter the "didExitRegion" when I go off the beacon region . I am taking the above…
ssnegi
  • 183
  • 1
  • 1
  • 15
0
votes
1 answer

Attach a file to a virtual beacon using Android Beacon Library

I am very interested in using Android Beacon Library as it seems it can help with my project. I want to create virtual beacons using smartphones to act as if they were a beacon with an attached file, then a listening smartphone could access this…
0
votes
1 answer

Android - unable to stop ranging beacons

I am trying to create an android application that ranges for beacons in an area given by the user. The problem is when I add the distance constraint and come back to mainactivity, the app shows the previous instance of ranging also. For Example: The…
Burhan
  • 17
  • 5
0
votes
1 answer

Eddystone (which beacon is interacting?)

From multiple beacons placed at a location, how can we know from which beacon the user accessed the URL ? I am using Nearby notification. Minor value of beacon would help ? If yes then how ? Or pls suggest an alternative solution. Thanks.
0
votes
1 answer

Can we detect ibeacons through android phones without explicitly turning on the bluetooth or location?

How can we detect ibeacons from a android phone without explicitly switching on the bluetooth or location...? I want to design an app which detects for the beacon even when the bluetooth is off...please suggest the answer
0
votes
1 answer

How to send data from service even close the app

I am using Alt beacon library for beacon scanning.I am scanning beacon in service class.i want to keep on scan the beacon even application closed also.but if close the application service is stoped and beacon is not scanning.I tried but i am not…
0
votes
1 answer

iBeacons: Detect walking backwards?

I have been researching and reading a number of different articles on what iBeacons and beacon-related apps are capable of doing.However, I couldn't find any answers to a question that came up as I was reading one of those articles. Is it possible…
user3153278
  • 297
  • 2
  • 4
  • 20
0
votes
1 answer

Bootstrapnotifier doesnt recognise later added beacons | Android-Beacon-Library

Im working with the Android-Beacon-Library to scan for Beacons and display Informations. In Background Mode I want to send Notifications to the user. But I encountered a Problem during development. I want to add the Regions my Bootstrapnotifier…
0
votes
0 answers

Is Ibeacon of ios can connect with android beacon technology and vice versa?

We want to create an app for ios that will use ibeacon, and we are not sure if when we also develop our app in android it will be compatible with ios ibeacon? we can connect cross-platform?
0
votes
1 answer

Controlling the starting and stopping of scan explicitly through Android AltBeacon Library

I have been using the Android AltBeacon Library to Monitor and Range iBeacons in the nearby vicinity. One specific requirement of this application is allowing scanning for beacon detection even when the application is in the background and…
Aneeb Khawar
  • 330
  • 1
  • 8
0
votes
0 answers

Android Beacon transmitter stops automatically why?

I am developing an Android application which has functionality to interact with ibeacons and also to act as ibeacon using altbeacon android beacon library ( https://altbeacon.github.io/android-beacon-library/battery_manager.html ). I have got…
0
votes
1 answer

Using Android Beacon Library to transmit as iBeacon

I am trying to transmit iBeacon using Android Beacon Library but I am not sure if my code is right. I use app like nRF Master Control Panel to verify if it is transmitting as iBeacon but it doesn't seem to do that. Below is my code Beacon beacon =…
Helmi
  • 33
  • 1
  • 10
0
votes
1 answer

AltBeacon Android Beacon Library, RegionBootstrap beaconManager.onbind

I have a Service which implements BeaconConsumer and BootstrapNotifier. In this case I need to call beaconManager.bind(this); to bind BeaconManager in startBeaconManager method. But also I use RegionBootstrap to range beacons. As RegionBootstrap…
0
votes
1 answer

android beacon library get state for region

BootstrapNotifier (i.e. MonitorNotifier) have callback for entering / exiting region but how to get the region state at app startup (how can app realize to be already IN a region)?
Roven
  • 7
  • 4
0
votes
1 answer

Beacon library - bootstrapNotifier: no callback if already in a region

I'm writing a simple beacon application in Android If started outside a region it works (here's my custom log): onCreate - In onCreate - Out onBeaconServiceConnect - In onBeaconServiceConnect - Out didDetermineStateForRegion (INSIDE) didEnterRegion…