Build android repositories specifying specific SDK version
10K+
ultrarangers/android-build:latest (CI CURRENTLY DISABLED, usa tags by version)ultrarangers/android-build:sdk-*If you follow the branch name convention and pushed to origin, Bitbucket will integrate automatically to:
https://hub.docker.com/r/ultrarangers/android-build/
https://hub.docker.com/r/ultrarangers/android-build/tags/
To create a Docker container for a specific Android API version, branch out from master or the latest branch using the naming convention
android-{API VERSION NUMBER}
e.g.
android-27
The image tag name will be based on this later in the DockerHub automated build.
...
ENV ANDROID_API_VERSION 27
ENV ANDROID_BUILD_TOOLS_VERSION 27.0.3
...
git commit and git push to origin with your branch name. Dockerhub will automatically build the container (see registry below).For custom tags, you need to manually build. Use docker build and docker push like:
docker build . -t ultrarangers/android-build:[your tag]
docker push ultrarangers/android-build:[your tag]
To use your containers, in your CI file (e.g. bitbucket-pipelines.yml), just specify the image using the tag name. e.g.:
image:ultrarangers/android-build:sdk-27
Content type
Image
Digest
Size
3.3 GB
Last updated
over 6 years ago
docker pull ultrarangers/android-build:sdk-29