android13/packages/modules/Bluetooth/system/service/common
liiir1985 7f62dcda9f initial 2024-06-22 20:45:49 +08:00
..
android/bluetooth initial 2024-06-22 20:45:49 +08:00
bluetooth initial 2024-06-22 20:45:49 +08:00
Android.bp initial 2024-06-22 20:45:49 +08:00
BUILD.gn initial 2024-06-22 20:45:49 +08:00
README initial 2024-06-22 20:45:49 +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.