Questions tagged [ibeacon-android]

iBeacon in a single sentence is a technology that enables an iOS device or other hardware to send push notifications to iOS devices within close proximity using BLE (Bluetooth Low Energy).

Apple’s iBeacon works on Bluetooth Low Energy (BLE), also known as Bluetooth 4.0 or Bluetooth Smart. In a real life scenario it would be more of a location-aware, context-aware, pervasive small wireless sensor beacon which could pinpoint your location in a store. From there iBeacons could send you personal notifications of items around you that are on sale or items you may be looking for. It could enable payments at the point of Sale (POS) such that you don’t need to remove your wallet or card to make a payment. It could be a possible Near Field Communication (NFC) competitor.

It works by using Bluetooth Low Energy Proximity sensing to transmit a Universally unique identifier which when picked up by a compatible app or operating system can be turned into a physical location or trigger a specific action on the device such as a Check-in on social media.

Since BLE is a low energy technology it may face lot of challenges, such as data transmission rate, streaming might not be possible, security still remains an unclear subject, how would it manage broadcasting offers information on mass scale when in-store traffic is at its peak.

The beacons themselves come in a number of different formats, including small coin cell powered devices, USB sticks and software versions.

570 questions
4
votes
1 answer

How to calculate the distance to a beacon based on tx, rssi and accuracy

I am using petermetz/cordova-plugin-ibeacon to detect beacons around my mobile device. And I can see that plugins provides following informations about the beacon, such as uuid, major, minor, rssi, tx, accuracy What I want to know is what is…
Dipak
  • 6,532
  • 8
  • 63
  • 87
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
3 answers

How to identify Eddystone URL and uid?

I wish to detect Eddystone Ul and uid without using Proximity Beacon API or Nearby Messages API. I wish to use native android libraries like BluetoothAdapter or BluetoothGatt or BluetoothGap to parse the eddystone frames. Is this feasible? if so…
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

Problems with Kontakt.io Beacon example

I have recently acquired a beacon from Kontakt.io I followed the "Monitoring code example" from here: http://docs.kontakt.io/android-sdk/quickstart/#monitoring-code-sample The Kontakt library is included (since other methods from the library is…
Nicolai Lissau
  • 7,298
  • 5
  • 43
  • 57
4
votes
1 answer

Estimote beacon security

I have Estimote Developer Preview Kit. By the Estimote Android app I can change major and minor ids of the beacons. So anybody can change major and minor ids of beacons. How can I secure the beacons?
ferpar1988
  • 596
  • 2
  • 5
  • 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

How is the "rssi" value calculated by the BluetoothLeScanner scanner library?

I am working on a Bluetooth Low Indoor Positioning System and have been using the https://github.com/inthepocket/ibeacon-scanner-android repository to calculate RSSI values between my mobile device and multiple BLE beacons. I was looking through the…
3
votes
2 answers

How to properly stop scanning beacon using android-beacon-library (altbeacon)

Im using android-beacon-library from altbeacon to scan in a foreground. I put beaconManager.bind(this) on OnCreate and put beaconManager.unBind(this) on onDestroy() , but when i check the logcat i saw E/BeaconService: onDestroy() i thought…
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
1 2
3
37 38