1. ホーム
  2. アンドロイド

[解決済み】Android SDKのインストールを自動化する方法はありますか?

2022-04-11 04:55:41

質問

Android SDKをダウンロードし、インストールする必要があります。 AVDマネージャー UIからAPI、ツールのインストールを行います。このプロセスを自動化する方法はありますか?

どのように解決するのですか?

最新情報

最新バージョンでは sdkmanager Android SDK のパッケージを表示、インストール、更新、およびアンインストールできるコマンドラインツールです。

sdkmanager ツールは、Android SDK Tools パッケージで提供されます ( 25.2.3以降 ) にあり android_sdk/tools/bin/ .

  sdkmanager [--uninstall] [<common args>] [--package_file <file>] [<packages>...]
  sdkmanager --update [<common args>]
  sdkmanager --list [<common args>]
  sdkmanager --licenses [<common args>]

In its first form, installs, or uninstalls, or updates packages.
    By default, the listed packages are installed or (if already installed)
    updated to the latest version.

    --uninstall: uninstalled listed packages.

    <package> is a sdk-style path (e.g. "build-tools;23.0.0" or
             "platforms;android-23").
    <package-file> is a text file where each line is a sdk-style path
                   of a package to install or uninstall.
    Multiple --package_file arguments may be specified in combination
    with explicit paths.

In its second form (with --update), all installed packages are
    updated to the latest version.

In its third form, all installed and available packages are printed
    out.

In its fourth form (with --licenses), show and offer the option to
     accept licenses for all available packages that have not already been
     accepted.

Common Arguments:
    --sdk_root=<sdkRootPath>: Use the specified SDK root instead of the SDK
                              containing this tool

    --channel=<channelId>: Include packages in channels up to <channelId>.
                           Common channels are:
                           0 (Stable), 1 (Beta), 2 (Dev), and 3 (Canary).

    --include_obsolete: With --list, show obsolete packages in the
                        package listing. With --update, update obsolete
                        packages as well as non-obsolete.

    --no_https: Force all connections to use http rather than https.

    --proxy=<http | socks>: Connect via a proxy of the given type.

    --proxy_host=<IP or DNS address>: IP or DNS address of the proxy to use.

    --proxy_port=<port #>: Proxy port to connect to.

* If the env var REPO_OS_OVERRIDE is set to "windows",
  "macosx", or "linux", packages will be downloaded for that OS.

そこで、パッケージを更新するために

sdkmanager --update

ライセンスを受け入れること。

yes | sdkmanager --licenses

旧アンサー

(注意) android コマンドは非推奨です!)

自動化に近づけるのは、たぶん。

android update sdk --no-ui

android は、自動更新のためのオプションを提供しています。

Action "update sdk":
  Updates the SDK by suggesting new platforms to install if available.
Options:
  -f --force    Forces replacement of a package or its parts, even if something has been modified
  -u --no-ui    Updates from command-line (does not display the GUI)
  -o --obsolete Installs obsolete packages
  -t --filter   A filter that limits the update to the specified types of packages in the form of
                a comma-separated list of [platform, tool, platform-tool, doc, sample, extra]
  -s --no-https Uses HTTP instead of HTTPS (the default) for downloads
  -n --dry-mode Simulates the update but does not download or install anything

どのパッケージがインストール可能かを一覧表示したい場合は

android list sdk

そして、次のようなパッケージの順序付きリストが得られます。

Packages available for installation or update: 9
   1- ARM EABI v7a System Image, Android API 15, revision 2
   2- Intel x86 Atom System Image, Android API 15, revision 1
   3- Android Support, revision 8
   4- Google AdMob Ads SDK, revision 6
   5- Google Analytics SDK, revision 2
   6- Google Play APK Expansion Library, revision 1
   7- Google Play Billing Library, revision 2
   8- Google Play Licensing Library, revision 2
   9- Google Web Driver, revision 2

また、更新を希望するコンポーネントのみに制限するために --filter オプション

android update sdk --filter <component> --no-ui

ここで、component は以下のうちの1つまたは複数です。

  • が返す数値 android list sdk (すなわち 1 としても知られています。 パッケージインデックス )
  • アドオン
  • ドック
  • エクストラ
  • プラットフォーム
  • プラットフォームツール
  • サンプル
  • ソース
  • システムイメージ
  • ツール

または、1つ以上の特定の識別子を指定することができます。例えば、特定のパッケージの小さなセットをダウンロードしたいだけなら、こうすることができます。

android update sdk -u --filter platform-tools,android-16,extra-android-support

そして、プラットフォーム・ツール、APIレベル16、サポート・パッケージのJARファイルだけを入手することができます。これは、ビルドマシンのみを構築していて、決して使うことのない余分なものをすべてダウンロードするためにお金を払わなければならない場合に、本当に便利なものです。

利用可能なオプションを確認するには、--help を使用します。

android --help list sdk

       Usage:
       android [global options] list sdk [action options]
       Global options:
  -h --help       : Help on a specific command.
  -v --verbose    : Verbose mode, shows errors, warnings and all messages.
     --clear-cache: Clear the SDK Manager repository manifest cache.
  -s --silent     : Silent mode, shows errors only.

                   Action "list sdk":
  Lists remote SDK repository.
Options:
  -o --obsolete  : Deprecated. Please use --all instead.
  -a --all       : Lists all available packages (including obsolete and
                   installed ones)
     --proxy-host: HTTP/HTTPS proxy host (overrides settings if defined)
     --proxy-port: HTTP/HTTPS proxy port (overrides settings if defined)
  -s --no-https  : Uses HTTP instead of HTTPS (the default) for downloads.
  -e --extended  : Displays extended details on each package
  -u --no-ui     : Displays list result on console (no GUI) [Default: true]