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

What is the correct BeaconLayout for Estimote and Gimbal beacons

I would like the 2.0 release of the Android Beacon Library to be able to properly detect both old style Estimote beacons (pre-2013 models that did not support iBeacon technology) and Gimbal beacons. I know that Gimbal beacons have encrypted…
davidgyoung
  • 63,876
  • 14
  • 121
  • 204
6
votes
3 answers

Does Android Beacon Library really support background scanning?

I am using Android Beacon Library for BLE scanning with example. It works fine in foreground for both monitoring and ranging. However, for background, it only works for the cases of pressing "Home" in app and screen off. It is not work when I kill…
Rice
  • 155
  • 3
  • 11
6
votes
2 answers

How to get visible beacons from the RegionBootstrap AltBeacon method

I'm using the example code on this page (http://altbeacon.github.io/android-beacon-library/samples.html) in the Starting an App in the Background section and I've got a working app. It detects whenever a beacon is in range even on background. The…
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…
6
votes
0 answers

Android Studio - Estimote SDK - Could not find class

I'm building an app using the Estimote Android SDK & Android Studio. I have added the estimote-sdk-preview.jar to my libs folder, and the IDE recognises it (no errors in any of my .java files) but when it gets uploaded to my HTC One I get the…
Tom Hallam
  • 1,924
  • 16
  • 24
6
votes
1 answer

iBeacon background scanning

I've written my own little BLE scanning service that is triggered via an alarm every 3-5 seconds. It scans for 1.1 seconds to get teh beacons around it and then transforms the RSSI signal into a rough proximity. I am now considering the Radius…
Sven Haiges
  • 2,636
  • 5
  • 42
  • 54
5
votes
1 answer

Why isMultipleAdvertisementSupported() returns false, when getBluetoothLeAdvertiser returns an object?

I am trying to play with BLE transmission on my device. Here is the code I use and the output: // check BLE support Log.i(TAG, "BLE supported: " + getPackageManager().hasSystemFeature(PackageManager.FEATURE_BLUETOOTH_LE)); // true // check BLE…
LA_
  • 19,823
  • 58
  • 172
  • 308
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

Android Bluetooth Low Energy - iBeacon

Recently I got a iBeacon device with the intention of creating Android Apps than can recognize it and use it. I'm new using bluetooth in Android Apps and there many things than I still don't know. Looking in the Internet and in this forum I found…
5
votes
1 answer

How to integrate Android Beacon Library in my project?

I found this Android Beacon Library in the net, and i found it quite good. But I want to integrate the open source project in my app with some modification in the code so as to display the alert on beacon detection and some other scenarios.…
HeadOnn
  • 1,480
  • 14
  • 21
5
votes
0 answers

iBeaconGap Cordova Plugin based on RadiusNetwork Android Library

I'm trying to use the following iBeaconGap cordova plugin which is a wrapper for the RadiusNetworks Android iBeacons Library. My phone is LE bluetooth ready and detects my beacons with the RadiusNetwork Detector app from the play store. But adding…
5
votes
1 answer

Can we turn our Android device into a beacon?

Hi recently I started working on beacons. I am using estimote beacons for my purpose. But I got a doubt whether we can turn our device into beacons. If not why. Thank you.
Baradwaj Aryasomayajula
  • 1,184
  • 1
  • 16
  • 42
5
votes
2 answers

Android Estimote sdk is not able to scan other beacons than the estimote ones

I am trying to see beacons with the estimote sdk in android but with no luck!I can see all the estimote beacons but with all other beacons is not working (fobo beacons etc.) I am using the uuid for the fobo beacons inside the Region constructor and…
sfig
  • 51
  • 1
  • 4
5
votes
1 answer

Radius Networks' ibeacon ranging fluctuation

I'm fairly new to iBeacon but I have spent the day trying to get informations and a working Android application with iBeacon. I have stumbled upon Android iBeacon Library samples and gave it a try. I used the latest aar file (0.7.3) and basically…
Benjamin M.
  • 604
  • 6
  • 13
4
votes
2 answers

Indoor navigation Beacons

I want to develop application for indoor navigation. Estimote do not provides indoor navigation for Android. They provide for iOS as of now. My requirement is : I want to find nearest beacon. Draw map for all beacons near by like google map for…
Amee
  • 41
  • 3
1
2
3
37 38