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

How to add more than one beacon in a single region?

According to Estimote: There is almost no limit to how many beacons can be included in a single region (technically, it’s over 4 billion). How do we add more than one beacon in one single region for monitoring? We create a region like this: UUID…
M D
  • 47,665
  • 9
  • 93
  • 114
4
votes
0 answers

Issue calling > 1 Region in startRanging(..)

I am facing one issue here. I am trying to create > 1 Region for Beacon Ranging. but it's not working. It never get called even onServiceReady(...). When i do the same for single Region then it's fine. It's worked. Code: import…
M D
  • 47,665
  • 9
  • 93
  • 114
4
votes
1 answer

Unique notification for each Beacon (more than 20 beacons)

I'm building an iOS App, in which I would wish to handle more than 20 iBeacons. Basically all beacons added to the web portal have to be handled by the App. Since there is an iOS restriction to number of region to be monitored as 20, I'm unable to…
sreejith.virgo
  • 333
  • 1
  • 4
  • 15
4
votes
1 answer

Android Beacon Library works well on one Android 4.4 device, but not another

UPDATE: I have tried a more direct approach (see EDIT 3, below) which yields an interesting lack of data from the beacon on the watch. Details on non-working device. Smartwatch (Generic) listed as Bluetooth 4.0 capable MTK6572 chipset Model number…
4
votes
4 answers

How do I implement background service for kontakt.io sdk?

If I enter a region of a beacon with my Android device I like to show a notification. Thats well documented at Android SDK Quickstart This is just working as long as the app is active. How do I get notifications when the app is closed?
erdna
  • 3,962
  • 3
  • 14
  • 9
4
votes
2 answers

All beacons are not shown in Android using altBeacon library

I am using the AltBEacon Android library for developing an iBeacon app for Android devices. I am scanning for beacons, however, only two out of four beacons are found (sometimes 1/4). I increasemBeaconManager.setForegroundScanPeriod(5000l); to 5…
hrskrs
  • 4,447
  • 5
  • 38
  • 52
4
votes
1 answer

How to start ranging without UUID using estimote beacon android?

I am making an android application on beacon in this app I want to find estimote beacon. So I want to know that how to start ranging beacon without uuid and how to search estimote beacon. I want to find uuid of Estimote. If anybody knows please help…
Kamlesh
  • 407
  • 1
  • 3
  • 17
4
votes
1 answer

How to get faster ranging responses with AltBeacon?

I'm currently working on a showcase app using BLE beacons from BEACONinside. I have set up my app to range two of my beacons (thus having 2 Regions). This works fine and I receive all the callbacks and all the beacon info I need. I'm monitoring…
4
votes
1 answer

Estimote beacons detector service in background

I am trying to make a service on Android that would find Estimote beacons and push notifications to the user. I have downloaded sample code, and created new myService Activity using that code. Code is running, and I can see in LogCat that Android is…
3
votes
1 answer

Altbeacon stopped working on Android10 and didEnterRegion does not get called at all

altbeacon on Android 10 has simply stopped working. Are there any changes required especially to go to Android 10? I have added the following permissions to my AndroidManifest.xml
AdeleGoldberg
  • 1,289
  • 3
  • 12
  • 28
3
votes
0 answers

Bluetooth beacon Scanning using android beacon library

I have a problem every time i open an activity (blueToothSearch.java) the following error occurs in my logcat. 12-04 18:57:52.317 5354-5354/com.example.admin.paniccenter E/AndroidRuntime: FATAL EXCEPTION: main Process:…
3
votes
1 answer

Parsing the URL of a beacon

I am using android.bluetooth.le api to scan bluetooth LE devices around me @Override public void onLeScan(final BluetoothDevice device, final int rssi, byte[] scanRecord) { ... } and i'm using this…
3
votes
1 answer

Support for broadcast beacon in React Native

How can I broadcast beacon in React Native? Is there any packages supporting both iOS and Android? I found this package, but supports only iOS. I don't see anything which supports for Android alone or both iOS and Android.
user43286
  • 2,261
  • 3
  • 31
  • 42
3
votes
1 answer

How does a Bluetooth beacon work with an app?

Does a Bluetooth beacon work like this, it transmits ID’s and a phone with BLE detects the ID and sends it to a app looking for ID's which does something if the ID matches one in a database for example Question: Can you connect the Bluetooth beacon…
1
2
3
19 20