On this page you find all important commands for the CLI tool sdkmanager. If the
command you are looking for is missing please ask our AI.
sdkmanager
The sdkmanager
is a command line tool provided by the Android Software Development Kit (SDK) tools. It is used to manage and update the various components of the Android SDK.
- The
sdkmanager
allows developers to download and update various versions of Android SDK tools, platforms, system images, and other components. - It simplifies the process of managing Android SDK components by providing a command line interface.
- The
sdkmanager
is available for Windows, macOS, and Linux operating systems. - It is commonly used in conjunction with build automation tools like Gradle or other command line workflows.
- It requires Java Development Kit (JDK) to be installed and properly configured on the system.
- The tool can be used to easily install and uninstall specific versions of Android SDK components.
- It supports various options like
--list
to view available packages,--install
to install a specific package, and--update
to update installed packages. - It also provides options to accept the terms and conditions for specific packages using
--accept-licenses
. - The
sdkmanager
tool can automatically download dependencies required for a package installation. - It is regularly updated by Google to provide new features and support for the latest Android SDK components.
List of commands for sdkmanager:
-
sdkmanager:tldr:7232a sdkmanager: Uninstall a package.$ sdkmanager --uninstall ${package}try on your machineexplain this command
-
sdkmanager:tldr:b4374 sdkmanager: Update every installed package.$ sdkmanager --updatetry on your machineexplain this command
-
sdkmanager:tldr:d15e0 sdkmanager: Install a package.$ sdkmanager ${package}try on your machineexplain this command
-
sdkmanager:tldr:d202c sdkmanager: List available packages.$ sdkmanager --listtry on your machineexplain this command