ibeacon

Beacon monitoring after reboot with iOS10

可紊 提交于 2019-12-01 15:01:22
With iOS9, my app was able to detect beacons even iPhone was restarting. With iOS10 this feature is no more working. It seems that with iOS10 "monitored beacon list" is not restarted agter a phone reboot. Any idea ? There have been a number of reports of failing to monitor beacons in the background after an upgrade to iOS 10. Try this: Setting -> General -> Reset -> Reset Network Settings Launch your app, verifying beacon detection in the foreground Turn off your beacon or leave range to verify region exit in the foreground Put the app to the background (hit home or kill the app) Turn on the

Android Beacon Library - correct use of BluetoothMedic?

巧了我就是萌 提交于 2019-12-01 14:23:40
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 source code. I get somewhat different results depending on whether I use enablePeriodicTests() or individually run runScanTest() and runTransmitterTest(). With enablePeriodicTests(), BluetoothTestJob.onStartJob() runs scan and transmitter tests every 15 minutes, apparently OK. If my beacon is transmitting, I get "Scan test succeeded" then "scan test

Android Beacon Library - correct use of BluetoothMedic?

爷,独闯天下 提交于 2019-12-01 13:09:17
问题 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 source code. I get somewhat different results depending on whether I use enablePeriodicTests() or individually run runScanTest() and runTransmitterTest(). With enablePeriodicTests(), BluetoothTestJob.onStartJob() runs scan and transmitter tests every

A simple code to detect any beacon in swift

馋奶兔 提交于 2019-12-01 12:09:34
I am new to swift programing , I am trying to develop app detecting beacons but still I can not detect any beacon. let region = CLBeaconRegion(proximityUUID: NSUUID(UUIDString: "11111111-1111-1111-1111-111111111111")!,major: 1, minor: 1, identifier: "MyBeacon") locationManager.startMonitoringForRegion(region) locationManager.startRangingBeaconsInRegion(region) SWIFT 3: First of all you should add the CoreLocation.Framework In the .Plist file add the key/string NSLocationAlwaysUsageDescription with appropriate string In your Object add the CLLocationManagerDelegate Add the

onBeaconServiceConnect not called

℡╲_俬逩灬. 提交于 2019-12-01 11:13:46
问题 As before, I work with Android Beacon Library, It already worked and I can found out beacon via BLE - Bluetooth low energy, But now, after updated to latest version of library, now method onBeaconServiceConnect() not run anymore. Please tell me what I need to do to make it works, Thank you, p/s : Code : Manifest.xml <uses-feature android:name="android.hardware.bluetooth_le" android:required="true" /> <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> <uses-permission

Can an Android 4.4 device act as an iBeacon? [closed]

牧云@^-^@ 提交于 2019-12-01 09:28:10
In an answer to another question , I saw that "You can also transmit as a beacon on rooted Android 4.4.3 devices, but it requires an app installed with system privileges." How can this be done? Yes, this is possible on 4.4.3, but the critical API methods startAdvertising() , stopAdvertising() and getAdvScanData() (which allows you to read and write the raw information sent out in the advertisement) are blocked from use unless an app has android.permission.BLUETOOTH_PRIVILEGED . This is a system-level permission, so the only way to get this is for your custom app is to root your phone, and

Can an Android 4.4 device act as an iBeacon? [closed]

99封情书 提交于 2019-12-01 06:56:06
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 3 years ago . In an answer to another question, I saw that "You can also transmit as a beacon on rooted Android 4.4.3 devices, but it requires an app installed with system privileges." How can this be done? 回答1: Yes, this is possible on 4.4.3, but the critical API methods startAdvertising() ,

Indoor Navigation using I-Beacon- Accuracy is changing rapidly

主宰稳场 提交于 2019-12-01 06:20:38
问题 I am doing an indoor navigation application using I-Beacon. For that i am using the accuracy given by the beacon. But it is changing rapidly. Since the value is changing, the X and Y coordinates of the user location, which has to be calculated is also varying even when i am static. So please help me to make the accuracy a constant when I m not moving. Thanks in advance 回答1: I suggest you to read the following article about the experience with two positioning algorithms Trilateration and

Google Proximity Beacon API: how to register iBeacon?

本秂侑毒 提交于 2019-12-01 04:17:23
The Google's Proximity Beacon API documentation uses Eddystone as an example everywhere: https://developers.google.com/beacons/proximity/register However, documentation mentions two more types of beacons , AltBeacon and iBeacon. If I understand correctly, something like this should be used (adapted from Google's example): { "advertisedId": { "type":"IBEACON", "id":"base 64 of what???"}, "status":"ACTIVE", "latLng": { "latitude": 51.4935657, "longitude": -0.1465538 } } However, what is the acceptable binary format for iBeacon's UUID,Major,Minor (which should be base64'd)? The id of the

How to send data to an iphone which is turned into a iBeacon?

有些话、适合烂在心里 提交于 2019-12-01 03:55:53
how is it possible to send data to an iPhone which acts as an iBeacon? I am looking for an process as the following: Search nearby iBeacons Connect to some iBeacon Exchange data between the devices Does anybody know how to put the different bluetooth functions together to make this possible? thx in advance Standard iBeacons are transmit-only devices that can be seen by mobile devices, but don't actually "connect" to them or exchange data. But you can still do what you are asking if you have an app on all devices as well as a web service to do the data transfer. This would allow devices A and B