eddystone

Background monitoring of Eddystone beacon using altbeacon library on android platform

两盒软妹~` 提交于 2019-12-01 22:31:25
问题 Is background monitoring of Eddystone beacon using altbeacon library on android platform possible? How can I achieve it? Following is the code by which I can detect beacons with a specified UUID when the app is launched, but I want to achieve the same when the app is not running. public class MainActivity extends ActionBarActivity implements BeaconConsumer,MonitorNotifier { private BeaconManager beaconManager; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate

Can I listen for Eddystone beacons when my app is not running?

狂风中的少年 提交于 2019-11-30 07:44:34
With Google's new Eddystone standard they will be providing support for android in Google Play services Nearby Api . Can we register for eddystone beacons and have our app receive an intent even if the app is not running? Yes, it is possible to do exactly this using the Android Beacon Library , which has full support for Eddystone . The mechanism for background launching of your app works the same way on Eddystone as it does for other kinds of beacons supported by the library. You use a RegionBootstrap object in a custom Application class. You can read details about how this works here . The

Location requirement to scan for BLE devices

不问归期 提交于 2019-11-30 05:43:26
问题 BLE scanning faced a remarkable difference Marshmallow onwards with the requirement of location of device to be ON. Technically, I don't see a valid reason why location would be required to scan for BLE devices. Why has this been done by Google? 回答1: Q: Why has this been done by Google? A: Because BLE scanning is commonly used to determine a user's location with Bluetooth LE beacons. I discussed this with Google engineers at a Q&A session at Google I/O 2015 when the change was still not

Find Eddystone Beacons using Nearby Google API

孤街醉人 提交于 2019-11-29 12:46:52
I attached data to Eddystone Beacons using The Proximity Beacon API. I want to fetch the Beacon attachments using Nearby Messages API. I followed the steps mentioned at https://developers.google.com/nearby/messages/android/get-beacon-messages . But I am not able to read Beacon attachments. The onFound() method is not getting called Check the following... Set a callback on the response to subscribe and call startResolutionForResult on the Status object if the Status was APP_NOT_OPTED_IN . See github example Make sure you've enabled the Nearby API in the Developer Console for your app. Step 3

Find Eddystone Beacons using Nearby Google API

£可爱£侵袭症+ 提交于 2019-11-28 06:10:53
问题 I attached data to Eddystone Beacons using The Proximity Beacon API. I want to fetch the Beacon attachments using Nearby Messages API. I followed the steps mentioned at https://developers.google.com/nearby/messages/android/get-beacon-messages. But I am not able to read Beacon attachments. The onFound() method is not getting called 回答1: Check the following... Set a callback on the response to subscribe and call startResolutionForResult on the Status object if the Status was APP_NOT_OPTED_IN .