À partir du 27 mars 2025, nous vous recommandons d'utiliser android-latest-release
au lieu de aosp-main
pour créer et contribuer à AOSP. Pour en savoir plus, consultez la section Modifications apportées à AOSP.
Bluetooth
Restez organisé à l'aide des collections
Enregistrez et classez les contenus selon vos préférences.
Android fournit une pile Bluetooth par défaut qui prend en charge le Bluetooth classique et le Bluetooth à basse consommation (BLE). À l'aide du Bluetooth, les appareils Android peuvent créer des réseaux personnels pour envoyer et recevoir des données avec les appareils Bluetooth à proximité.
Dans Android 4.3 et versions ultérieures, la pile Bluetooth Android permet d'implémenter le BLE. Pour utiliser pleinement les API BLE, suivez les exigences HCI Bluetooth d'Android. Les appareils Android dotés d'un chipset qualifié peuvent implémenter le Bluetooth Classic ou les deux (Bluetooth Classic et BLE). Le BLE n'est pas rétrocompatible avec les anciens chipsets Bluetooth.
Dans Android 8.0, la pile Bluetooth est entièrement qualifiée pour le Bluetooth 5. Pour utiliser les fonctionnalités Bluetooth 5 disponibles, l'appareil doit être équipé d'un chipset Bluetooth 5 certifié.
Architecture Android
Une application Bluetooth communique avec le processus Bluetooth via Binder. Le processus Bluetooth utilise Java Native Interface (JNI) pour communiquer avec la pile Bluetooth et fournit aux développeurs un accès à différents profils Bluetooth. Ce diagramme montre la structure générale de la pile Bluetooth :

Figure 1 : Architecture Bluetooth Android.
- framework d'application
-
Au niveau du framework d'application se trouve le code de l'application, qui utilise les API
android.bluetooth
pour interagir avec le matériel Bluetooth. En interne, ce code appelle le processus Bluetooth via le mécanisme Binder IPC.
- Application Bluetooth
-
L'application Bluetooth, située dans
packages/modules/Bluetooth/android/app
,
est fournie sous forme d'application Android et implémente les profils Bluetooth au niveau du framework Android. Cette application appelle la pile Bluetooth via JNI.
- JNI
-
Le code JNI associé à
android.bluetooth
se trouve dans
packages/modules/Bluetooth/android/app/jni
. Le code JNI appelle la pile Bluetooth lorsque certaines opérations Bluetooth se produisent, par exemple lorsque des appareils sont détectés.
- Pile Bluetooth
-
La pile Bluetooth par défaut est fournie dans AOSP et se trouve dans
packages/modules/Bluetooth/system
. La pile implémente la HAL Bluetooth générique et la personnalise avec des extensions et des modifications de configuration.
- implémentation par le fournisseur
-
Les appareils du fournisseur interagissent avec la pile Bluetooth à l'aide du langage de définition de l'interface HAL (HIDL).
HIDL
HIDL définit l'interface entre la pile Bluetooth et l'implémentation du fournisseur. Pour générer les fichiers HIDL Bluetooth, transmettez les fichiers d'interface Bluetooth à l'outil de génération HIDL. Les fichiers d'interface se trouvent dans hardware/interfaces/bluetooth
.
Développement de la pile Bluetooth
La pile Bluetooth Android est une pile Bluetooth entièrement qualifiée. La liste de qualification est disponible sur le site Web de Bluetooth SIG (connexion requise) sous QDID 169365.
La pile Bluetooth principale se trouve dans
packages/modules/Bluetooth
. Le développement a lieu dans AOSP, et les contributions sont les bienvenues.
Le contenu et les exemples de code de cette page sont soumis aux licences décrites dans la Licence de contenu. Java et OpenJDK sont des marques ou des marques déposées d'Oracle et/ou de ses sociétés affiliées.
Dernière mise à jour le 2025/08/22 (UTC).
[[["Facile à comprendre","easyToUnderstand","thumb-up"],["J'ai pu résoudre mon problème","solvedMyProblem","thumb-up"],["Autre","otherUp","thumb-up"]],[["Il n'y a pas l'information dont j'ai besoin","missingTheInformationINeed","thumb-down"],["Trop compliqué/Trop d'étapes","tooComplicatedTooManySteps","thumb-down"],["Obsolète","outOfDate","thumb-down"],["Problème de traduction","translationIssue","thumb-down"],["Mauvais exemple/Erreur de code","samplesCodeIssue","thumb-down"],["Autre","otherDown","thumb-down"]],["Dernière mise à jour le 2025/08/22 (UTC)."],[],[],null,["# Bluetooth\n\nAndroid provides a default Bluetooth stack that supports both Classic Bluetooth and Bluetooth\nLow Energy (BLE). Using Bluetooth, Android devices can create personal area networks to send\nand receive data with nearby Bluetooth devices.\n\n\nIn Android 4.3 and higher, the Android Bluetooth stack provides the ability to implement\nBLE. To fully use the BLE APIs, follow the\n[Android Bluetooth HCI Requirements](/docs/core/connect/bluetooth/hci_requirements). Android devices with a qualified chipset can implement either Classic Bluetooth or both\nClassic Bluetooth and BLE. BLE isn't backward compatible with older Bluetooth chipsets.\n\n\nIn Android 8.0, the Bluetooth stack is fully qualified for Bluetooth 5. To use\navailable Bluetooth 5 features, the device needs to have a Bluetooth 5 qualified chipset.\n\nAndroid architecture\n--------------------\n\n\nA Bluetooth app communicates with the Bluetooth process through Binder. The Bluetooth\nprocess uses Java Native Interface (JNI) to communicate with the Bluetooth stack and provides\ndevelopers with access to various Bluetooth profiles. This diagram shows the general\nstructure of the Bluetooth stack:\n\n**Figure 1.** Android Bluetooth architecture.\n\napp framework\n:\n At the app framework level is app code, which uses the\n [`android.bluetooth`](http://developer.android.com/reference/android/bluetooth/package-summary.html)\n APIs to interact with the Bluetooth hardware. Internally, this code calls the Bluetooth\n process through the Binder IPC mechanism.\n\nBluetooth app\n:\n The Bluetooth app, located in `packages/modules/Bluetooth/android/app`,\n is packaged as an Android app and implements the Bluetooth profiles at the Android framework\n layer. This app calls into the Bluetooth stack through JNI.\n\nJNI\n:\n The JNI code associated with `android.bluetooth` is located in\n `packages/modules/Bluetooth/android/app/jni`. The JNI code calls into the\n Bluetooth stack when certain Bluetooth operations occur, such as when devices are\n discovered.\n\nBluetooth stack\n:\n The default Bluetooth stack is provided in AOSP and is located in\n `packages/modules/Bluetooth/system`. The stack implements the generic Bluetooth\n HAL and customizes it with extensions and configuration changes.\n\nvendor implementation\n:\n Vendor devices interact with the Bluetooth stack using the HAL interface definition\n language (HIDL).\n\n### HIDL\n\n\n[HIDL](/docs/core/architecture/hidl) defines the interface between the\nBluetooth stack and the vendor implementation. To generate the Bluetooth HIDL files, pass the\nBluetooth interface files into the HIDL generation tool. The interface files are located in\n[`hardware/interfaces/bluetooth`](https://android.googlesource.com/platform/hardware/interfaces/+/android16-release/bluetooth/).\n\n### Bluetooth stack development\n\n\nThe Android Bluetooth stack is a fully qualified Bluetooth stack. The qualification listing is\non the Bluetooth SIG website (requires sign-in) under\n[QDID 169365](https://launchstudio.bluetooth.com/ListingDetails/130825).\n\n\nThe core Bluetooth stack resides in\n[packages/modules/Bluetooth](https://cs.android.com/android/platform/superproject/+/android-latest-release:packages/modules/Bluetooth/). Development happens in AOSP, and contributions are welcome."]]