2025 年 3 月 27 日より、AOSP のビルドとコントリビューションには aosp-main
ではなく android-latest-release
を使用することをおすすめします。詳細については、AOSP の変更をご覧ください。
TF 開発環境
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
Trade Federation は AOSP とともに配布され、Android ビルドシステムを使用してバイナリを作成します。Android ソースツリーからパッケージをコンパイルし実行するためのビルド環境が確立されていることを確認してください。
Tradefed を作成する
Android ソースツリーのルート ディレクトリから、次のコマンドを使用します。
source ./build/make/envsetup.sh
lunch <device-target>
make tradefed-all -j8
Tradefed でのコーディング環境の設定方法については、Tradefed の開発をご覧ください。
Tradefed をダウンロードする
継続的インテグレーション ダッシュボードの [test_suites_x86_64] 列から、すぐに使用できる作成済みの Tradefed パッケージをダウンロードできます。[Build Artifacts] タブで tradefed.zip ファイルを探します。
解凍したら、解凍したディレクトリから直接 ./tradefed.sh
を呼び出すだけです。
コマンドラインから実行する
Tradefed では、$PATH
に adb
ユーティリティが必要です。
export PATH=$PATH:<path/to/adb>
Tradefed が作成されていれば、tradefed.sh
ランチャー スクリプトはパスからアクセスできます。Trade Federation コンソールを起動する手順は次のとおりです。
tradefed.sh
これで Trade Federation の環境が設定されました。
このページのコンテンツやコードサンプルは、コンテンツ ライセンスに記載のライセンスに従います。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,["# TF development environment\n\nTrade Federation is distributed with the AOSP and uses the Android build system\nto create its binary. Make sure you've [established\na build environment](/docs/setup/initializing) to compile and run packages from the\nAndroid source tree.\n\nBuild Tradefed\n--------------\n\n\nFrom the root directory of the Android source tree: \n\n source ./build/make/envsetup.sh\n lunch \u003cdevice-target\u003e\n make tradefed-all -j8\n\n\nSee [Developing Tradefed](/docs/core/tests/tradefed/development)\nfor more details about how to set up your environment for coding in Tradefed.\n\nRun from command line\n---------------------\n\n\nTradefed requires the `adb` utility in your `$PATH`: \n\n```\nexport PATH=$PATH:\u003cpath/to/adb\u003e\n```\n\n\nIf Tradefed was built, the `tradefed.sh` launcher script is\naccessible from your path. To launch the\n[Trade Federation Console](/docs/core/tests/tradefed/fundamentals/console): \n\n```\ntradefed.sh\n```\n\n\nNow your environment is set up for Trade Federation."]]