aosp12/system/bt/service/common
hcl 7be3fd486c init from android-12.1.0_r8 2023-01-09 17:11:35 +08:00
..
android/bluetooth init from android-12.1.0_r8 2023-01-09 17:11:35 +08:00
bluetooth init from android-12.1.0_r8 2023-01-09 17:11:35 +08:00
Android.bp init from android-12.1.0_r8 2023-01-09 17:11:35 +08:00
BUILD.gn init from android-12.1.0_r8 2023-01-09 17:11:35 +08:00
README init from android-12.1.0_r8 2023-01-09 17:11:35 +08:00

README

This directory contains all the "common" sources between the bluetooth daemon
and our client library. All source files here are under the "bluetooth"
subdirectory, which is the exported root path for the client static library.
Only common files should go here. All headers that go into common/bluetooth must
only include other headers from common/bluetooth and must use "bluetooth" as the
root path, e.g.:

#include <bluetooth/uuid.h>

This is so that client applications that link against the client library have
one common include path exported to them, and our headers can find eachother
within that.