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

Keeping track of beacons

@Override public void didRangeBeaconsInRegion(Collection beacons, Region region) { for (Beacon beacon : beacons) { Beacon.setHardwareEqualityEnforced(true); …
0
votes
0 answers

Why is the beaconmanager just finding a beacon?

My problem is that the beacon manager just finds a beacon. My code is below; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); //location permission …
erdogann
  • 3
  • 2
0
votes
1 answer

Android Beacon Library RSSI filter

I know that this is related to existing question, but none directly answered my question, and my reputation is too low to add a comment to ask David. Sorry :( I'm using the Android Beacon Library, and I would like to experiment with filters besides…
JAW
  • 21
  • 3
0
votes
1 answer

I am using altbeacon library 2.15+ but for oreo and nougat version is not scanning beacon?

onBeacon ServiceConnect method is to detect the beacon. For lollipop version is detecting for nougat and oreo version beacon not detecting: public void onBeaconServiceConnect() { RangeNotifier rangeNotifier = new RangeNotifier() { …
0
votes
1 answer

didRangeBeaconsInRegion() call multiple times after restarts Android app

I am developing Android app which scan near Beacons. Very first time open Android app and scan near beacons and didRangeBeaconsInRegion() method call every 2 seconds. But when I close app then again starts then didRangeBeaconsInRegion() method…
Palak
  • 2,165
  • 2
  • 21
  • 31
0
votes
1 answer

kontakt beacon is not detecting

This is first time i am working with beacon and android, can someone please help what i missed here. I am using beacon eddystone device. After startMonitoringBeaconsInRegion it shows 0 device detcted Dependencies: -implementation…
0
votes
1 answer

Does apple require you to have some special chip for iBeaons?

While playing around with iBeacon simulators, I noticed this : *Android phones can recognize iBeacons irrespective of the device simulating the iBeacons(iOS and Android) *iPhones can recognize iBeacons only if the simulating device is also an…
Adarsh ML
  • 128
  • 2
  • 10
0
votes
1 answer

Detect individual beacon using proximity SDK

I have used this example to detect beacons. In this example, Is it possible to detect which beacon is triggering the action?
Nikmaniac
  • 29
  • 6
0
votes
0 answers

Estimote's RN wrapper (react-native-proximity) cannot detect beacon

I created an RN project with react-native init. The app tried to detect an iBeacon tagged as 'japan' but has never succeeded. However, the official Estimote App in the same Android phone can detect the 'japan' iBeacon and show on its screen. The…
phr.phr
  • 11
  • 1
0
votes
0 answers

BootstrapNotifier not launch activity when app not running

i have problem with Alt Library I want use BootstrapNotifier. I need launch activity/service or create notification when application not runing. (after first launch) I can detect beacons (Kontakt.io) when application in foreground and background.…
Parad0X
  • 3,634
  • 2
  • 12
  • 23
0
votes
1 answer

Android Beacon Library - extending BluetoothMedic for unconditional resets?

I have an Asus P00A tablet (Android 7.0, API24) on which the BLE stops after some hours. (This affects any BLE app, not just my app using Android Beacon Library). Apps start working again if I manually switch off BLE then switch it back on. The…
0
votes
1 answer

Android Beacon Library - correct use of BluetoothMedic?

I have some questions on the use of Bluetooth Medic, based on the following observations. Because Bluetooth stops on one of my devices I have been looking at the BluetoothMedic to see whether it can help. I've looked at the debug messages and the…
0
votes
1 answer

Automating the Configuration Process Of Beacons

I am working on a IoT Project, where I need to deploy 700 beacons in different parts of the country. Whenever a user(assuming the required services are enabled on the user's phone), the user should get a silent notification of a link to a webapp and…
moonwalker7
  • 1,122
  • 3
  • 11
  • 29
0
votes
1 answer

Android Device as virtual ibeacon

I'm trying to make my android device as virtual iBeacon using alt beacon library, I'm able to make my device as iBeacon but it is not detecting in iOS(Core Location) or Android devices. Here is the code I'm using Beacon beacon = new…
Rupesh
  • 23
  • 3
0
votes
1 answer

AltBeacon api return empty collection while ranging beacons

I am trying to range beacons and I am doing exactly what it is written here: http://altbeacon.github.io/android-beacon-library/samples.html didRangeBeaconsInRegion method is firing but always with empty collection. I have installed "locate" by…