commit | 8f22ffefd4f200e3741af45387700e619d5c3a05 | [log] [tgz] |
---|---|---|
author | edwinwu <edwinwu@google.com> | Tue Feb 22 06:13:11 2022 |
committer | Copybara-Service <copybara-worker@google.com> | Tue Feb 22 06:14:20 2022 |
tree | fc9af620a8c8dec0dc296d7402e50f8adc7871a1 | |
parent | 1f006873309e7d9ef55ad2c906bd31c198533b5b [diff] |
[BLE Refactor] Move /cal/ble.h , base_types.h to /platform/implementation/ble_v2.h PiperOrigin-RevId: 430133309
The repository contains the Nearby project C++ library code. This is not an officially supported Google product.
Nearby Connections is a high level protocol on top of Bluetooth/WiFi that acts as a medium-agnostic socket. Devices are able to advertise, scan, and connect with one another over any shared medium (eg. BT <-> BT). Once connected, the two devices share a list of all supported mediums and attempt to upgrade to the one with the highest bandwidth (eg. BT -> WiFi). The connection is encrypted, reliable, and fully duplex. BYTE, FILE, and STREAM payloads are all supported and will be chunked & transferred internally and recombined on the receiving device. See Nearby Connections Overview for more information.
git clone https://github.com/google/nearby cd nearby git submodule update --init --recursive
We support multiple platforms including Linux, iOS & Windows.
Currently we support building from source using [bazel] (https://bazel.build). Other BUILD system such as cmake may be added later.
Prerequisites:
To build the Nearby Connection Core library:
CC=clang CXX=clang++ bazel build -s --check_visibility=false //connections:core --spawn_strategy=standalone --verbose_failures
Currently we provide precompiled libraries. See the following page for instructions.
Last Updated: Feb 2022