2025 年 3 月 27 日より、AOSP のビルドとコントリビューションには aosp-main
ではなく android-latest-release
を使用することをおすすめします。詳細については、AOSP の変更をご覧ください。
adbd
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
adbd モジュールは、コマンドライン adb と IDE のデバッグ セッションを管理します。このモジュールは更新可能です。つまり、通常の Android リリース サイクル外で機能のアップデートを受信できます。
adbd をモジュール化することで、パフォーマンスの改善(過去に行われた改善と今後の新たな改善)、バグ(バッテリーが切れるまで CPU 使用率 100% で adbd が動作し続けるなどのバッテリー消耗バグ)の修正、旧バージョンの Android にバックポートされていない機能の提供を、より迅速に行えるようになります。このような改善は adbd の信頼性に寄与します。この信頼性は、不合格になるとアプリ デベロッパーと OEM にオフライン デバイスを手動で再接続 / 再起動させる可能性がある自動テストで重要です。信頼性の問題は、出荷時設定(OEM)とボード起動(SoC ベンダー)にも影響します。
モジュールの境界
Android 12 以降では、adbd モジュールのコードは packages/modules/adbd
です。
Android 11 以前では、adbd モジュールの境界は /system/core/adb
と /system/bin/adbd
です。
adbd モジュール(com.android.adbd
)は APEX 形式であり、Android 11 以降を搭載したデバイスで利用できます。
モジュールの依存関係
adbd モジュールは以下に依存します。
カスタマイズ
adbd モジュールはカスタマイズをサポートしていません。
このページのコンテンツやコードサンプルは、コンテンツ ライセンスに記載のライセンスに従います。Java および OpenJDK は Oracle および関連会社の商標または登録商標です。
最終更新日 2025-03-26 UTC。
[[["わかりやすい","easyToUnderstand","thumb-up"],["問題の解決に役立った","solvedMyProblem","thumb-up"],["その他","otherUp","thumb-up"]],[["必要な情報がない","missingTheInformationINeed","thumb-down"],["複雑すぎる / 手順が多すぎる","tooComplicatedTooManySteps","thumb-down"],["最新ではない","outOfDate","thumb-down"],["翻訳に関する問題","translationIssue","thumb-down"],["サンプル / コードに問題がある","samplesCodeIssue","thumb-down"],["その他","otherDown","thumb-down"]],["最終更新日 2025-03-26 UTC。"],[],[],null,["# adbd\n\nThe adbd module manages command-line adb and IDE debugging sessions. This module\nis updatable, meaning it can receive updates to functionality outside of the\nnormal Android release cycle.\n\nModularizing adbd enables faster delivery of performance improvements (those\nmade in previous years and new improvements yet to come), bug fixes (such as\nseveral power-drain bugs, including adbd continuing at 100% of a CPU until the\nbattery depletes), and features that haven't been backported to older versions\nof Android. Such improvements contribute to adbd reliability, which is critical\nfor automated testing where failures can force app developers and OEMs to\nmanually replug/restart offline devices. Reliability issues also affect factory\nsetup (OEMs) and board bringup (SoC vendors).\n\nModule boundary\n---------------\n\nFor Android 12 and higher, the adbd module code is\n`packages/modules/adbd`.\n\nFor Android 11 and lower, the adbd module boundaries\nare `/system/core/adb` and `/system/bin/adbd`.\n\nModule format\n-------------\n\nThe adbd module (`com.android.adbd`) is in\n[APEX](/docs/core/ota/apex) format and is available for devices\nrunning Android 11 or higher.\n\nModule dependences\n------------------\n\nThe adbd module depends on the following.\n\n- Java Debug Wire Protocol (JDWP) debugging protocol with Android runtime. adbd\n dynamically links against `libadbconnection_server`.\n\n- Authentication with `system_server`. adbd dynamically links against\n `libadbd_auth`.\n\nCustomization\n-------------\n\nThe adbd module doesn't support customization."]]