altbeacon

Background beacon detection and Notification (Both iOS and Android) for Eddystone beacon?

我与影子孤独终老i 提交于 2019-12-23 02:03:30
问题 Can we detect beacons in app background(Both iOS and Android). I see Eddystone beacon have some problem with background of iOS. How can solve that ? 回答1: iOS does allow background detection of service advertisements like Eddystone, but Eddystone detection times can be slower than iBeacon . The reason iBeacon detections are faster is because Apple has optimized it with hardware filters . Hardware filter slots in the bluetooth chip are activated when you monitor an iBeacon region on iOS. This

Is there an explanation for the regular oscillation experienced in Bluetooth RSSI

主宰稳场 提交于 2019-12-22 11:03:57
问题 I am working with kontakt.io Bluetooth eddystone UID beacons and an android application using the alt-beacon library (running on a Samsung Galaxy S5, although I doubt that is relevant). I've done a bunch of trials under different conditions and am working towards determining the feasibility of high-accuracy tracking via trilateration of multiple beacon signals. On multiple occasions I have noticed a regular oscillation of the beacon's RSSI being detected by the android device. Here is one of

AltBeacon library BootstrapNotifier does not call didEnterRegion

ⅰ亾dé卋堺 提交于 2019-12-22 09:20:57
问题 Hi i have created app using altbeacon reference app. And i want to call didEnterRegion using bootstrap notifier when app sees beacon in background. But i dont want it to scan background every 5 minutes, i want my app react to new beacon immediately. Is there some way to do this ? My Code : private static final String TAG = ".Application"; private final Identifier uuid = Identifier.parse("A1B2C3D4-AAAA-48D2-B060-D0C0D0C0D0C0"); private RegionBootstrap regionBootstrap; @Override public void

AltBeacon onBeaconServiceConnect not called

浪尽此生 提交于 2019-12-22 05:52:07
问题 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 onBeaconServiceConnect callback never called, though bindService is called. I believe onBeaconServiceConnect should be called in order application to work correctly. I've tried to set beaconManager.debug = true; but it didn't show me any new logs

AltBeacon App restarts after some minutes

我是研究僧i 提交于 2019-12-14 01:51:40
问题 I have some problems in my app. I have that after I disable the regionBootstrap and close the app through System.exit(0), my app after some minutes (usually 3-4 minutes) restarts itself. This are the Logcat lines that I found everytime my app restarts: 2018-11-24 14:54:34.883 897-1339/? V/AlarmManager: Triggering alarm #1: 2 when =969099760 package =walkenrollment.com.acc operation =*walarm*:walkenrollment.com.acc/org.altbeacon.beacon.startup.StartupBroadcastReceiver flags =0x0 2018-11-24 14

Using the AltBeacon library without extending Application

强颜欢笑 提交于 2019-12-13 05:25:32
问题 I have an Android Application that among other things monitor beacons using the AltBeacon library. My problem is that, from my understanding, to have a class monitoring beacons you must make this class extend Application. But I already have a class extending Application. Now I cant make my other class not extend Application and I cant make my " beaconClass " extend this class. My only option is to find a way to use the AltBeacon library without extending Application. So I would like to know

Detect beacon exited a range

試著忘記壹切 提交于 2019-12-13 04:34:12
问题 I am using Android with the AltBeacon library. I am starting to develop a BLE app which should tell me when a beacon is entering and when it is exiting a range inside a region so I can start an action. I could detect when a beacon is entering a region and determine his range. Therefore I used the didRangeBeaconsInRegion Method. My problem is now how to detect that a beacon has left/exited that range in the region? I couldn't find anything in the lib to do so. How can I achieve this? 回答1: The

BluetoothCrashResolver detects a crash on app launch

雨燕双飞 提交于 2019-12-13 00:29:20
问题 BluetoothCrashResolver detects a crash on app launch the sequence of flow is as follows: 1.the device's bluetooth is off initially 2.the app is launched 3.the app first checks whether bluetooth is on 4.if not ON,app displays a popup to enable bluetooth 5.User allows bluetooth to be switched on 6.bluetoothresolver says "crash detected" as lastBluetoothTurningOnTime=01/01/1970; lastBluetoothOffTime=01/01‌​/1970; so the if statement inside "case BluetoothAdapter.STATE_ON" fails. Let me know if

Can I get beacons data in Exit Regions also how can I detect when new beacon enterered into the region?

人盡茶涼 提交于 2019-12-12 15:07:51
问题 When multiple beacons are detected in the regions, how can I find that which one is the newest detected one? Also in beacon exist how can I know that specific beacon has left the region. 回答1: The typical way to solve this is to combine beacon monitoring and beacon ranging . You use beacon ranging to read the individual identifiers, and keep a map of what beacons have been seen before like this: private HashSet<Beacon> beaconsSeen = new HashSet<Beacon>(); @Override public void

How to programmatically set UUID, major ID, … and other properties at 1m in Altbeacon format

纵然是瞬间 提交于 2019-12-12 07:04:33
问题 I am currently exploring retail advertising options. I am interested in AltBeacon as it is an open standard. I have a basic question, if someone can answer How can I programmatically set UUID, major ID, minor ID, advertisements frequency, broadcasting power and RSSI at 1m in Altbeacon format on both (i) IOS devices and (ii) Android devices? As Locate App is taking these values as variables from users, I guess they are inputting these values programmatically?! 回答1: If you wan to know how to do