hello-beacons
hello-beacons copied to clipboard
Hello, Beacons! Proximity & Context-aware Apps
I have tried replacing certain oarts of this hello beacons code....but facing issues. Could some one help me in this regard by providing replacements for deprecated APIs
I can`t get the hardware to connect with my android smartphone using Google`s (beacon tool) to connect I get nothing from unregistered or registered! the blue tooth is receiving broadcast...
the correct method: `SubscribeOptions options = new SubscribeOptions.Builder() .setStrategy(Strategy.BLE_ONLY) // Note: If no filter is specified, Nearby will return all of your // attachments regardless of type. You must use...
Link: https://codelabs.developers.google.com/codelabs/hello-beacons/index.html?index=..%2F..%2Findex#6 . In onSaveInstanceState() the super.onSaveInstanceState(outState); must be called for last. The correct code is: ``` @Override protected void onSaveInstanceState(Bundle outState) { outState.putBoolean(KEY_SUBSCRIBED, mSubscribed); super.onSaveInstanceState(outState); } ```
On the step 9 it is stated that we should > open HelloBeacons-Display-Messages. but really in this step we are working with 'HelloBeacons-Finished' project
On '7. Subscribe to beacon attachments using Nearby' section it is highlighted that we create mSubscribed field to 'not bother replacing that subscription with a new one.'. Appropriate filed is...
when i turn on the app if within a few seconds (maybe 10sec) it tries to find beacons but after that even if i turn off the beacon or turn...

I'm following the tutorial from here: https://codelabs.developers.google.com/codelabs/hello-beacons/#6 But after following it step by step I'm getting an error on this line: ``` .setFilter(new MessageFilter.Builder() .includeNamespacedType("some_namespace", "some_type") .build(); ``` Error: ```...