A docker image includes Android SDK and Tools.
4.5K
The Android SDK (software development kit) is a set of development tools used to develop applications for the Android platform.
The docker image with tools tag with preinstalled Android SDK Command-line tools. The sdkmanager is a command-line tool that lets you view, install, update, and uninstall packages for the Android SDK.
docker run -t --rm avetkhov/android-sdk:tools sdkmanager --list
The docker image with X tag with preinstalled Android SDK Platform, Platform-Tools, Build-Tools and Tools.
platform package is required to compile your app for that version;platform-tools is a component for the Android SDK. It includes tools that interface with the Android platform, primarily adb and fastboot;build-tools is a component of the Android SDK required for building Android apps;tools is a component for the Android SDK. It includes development and debugging tools for Android.To display installed packages use
docker run -t --rm avetkhov/android-sdk:X sdkmanager --list
Android SDK is licensed under [Android Software Development Kit License Agreement][1].
As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained).
As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.
[1]: https://github.com/flutter/flutter/blob/master/LICENSE](https://developer.android.com/studio/terms
Content type
Image
Digest
sha256:a065ea5af…
Size
1 GB
Last updated
over 3 years ago
docker pull avetkhov/android-sdk