├── .github └── workflows │ └── cicd.yml ├── .gitignore ├── LICENSE ├── README.md ├── alpine ├── lazydl │ └── Dockerfile └── standalone │ └── Dockerfile ├── licenses ├── android-googletv-license ├── android-sdk-license ├── android-sdk-preview-license ├── google-gdk-license └── mips-android-sysimage-license ├── tools ├── android-accept-licenses.sh ├── android-env.sh ├── android-sdk-update.sh ├── android-wait-for-emulator.sh ├── entrypoint.sh ├── package-list-minimal.txt └── package-list.txt └── ubuntu ├── lazydl └── Dockerfile └── standalone └── Dockerfile /.github/workflows/cicd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrunner/docker-android-sdk/HEAD/.github/workflows/cicd.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | *.iml 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrunner/docker-android-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrunner/docker-android-sdk/HEAD/README.md -------------------------------------------------------------------------------- /alpine/lazydl/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrunner/docker-android-sdk/HEAD/alpine/lazydl/Dockerfile -------------------------------------------------------------------------------- /alpine/standalone/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrunner/docker-android-sdk/HEAD/alpine/standalone/Dockerfile -------------------------------------------------------------------------------- /licenses/android-googletv-license: -------------------------------------------------------------------------------- 1 | 2 | 601085b94cd77f0b54ff86406957099ebe79c4d6 -------------------------------------------------------------------------------- /licenses/android-sdk-license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrunner/docker-android-sdk/HEAD/licenses/android-sdk-license -------------------------------------------------------------------------------- /licenses/android-sdk-preview-license: -------------------------------------------------------------------------------- 1 | 2 | 84831b9409646a918e30573bab4c9c91346d8abd -------------------------------------------------------------------------------- /licenses/google-gdk-license: -------------------------------------------------------------------------------- 1 | 2 | 33b6a2b64607f11b759f320ef9dff4ae5c47d97a -------------------------------------------------------------------------------- /licenses/mips-android-sysimage-license: -------------------------------------------------------------------------------- 1 | 2 | e9acab5b5fbb560a72cfaecce8946896ff6aab9d -------------------------------------------------------------------------------- /tools/android-accept-licenses.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrunner/docker-android-sdk/HEAD/tools/android-accept-licenses.sh -------------------------------------------------------------------------------- /tools/android-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrunner/docker-android-sdk/HEAD/tools/android-env.sh -------------------------------------------------------------------------------- /tools/android-sdk-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrunner/docker-android-sdk/HEAD/tools/android-sdk-update.sh -------------------------------------------------------------------------------- /tools/android-wait-for-emulator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrunner/docker-android-sdk/HEAD/tools/android-wait-for-emulator.sh -------------------------------------------------------------------------------- /tools/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrunner/docker-android-sdk/HEAD/tools/entrypoint.sh -------------------------------------------------------------------------------- /tools/package-list-minimal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrunner/docker-android-sdk/HEAD/tools/package-list-minimal.txt -------------------------------------------------------------------------------- /tools/package-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrunner/docker-android-sdk/HEAD/tools/package-list.txt -------------------------------------------------------------------------------- /ubuntu/lazydl/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrunner/docker-android-sdk/HEAD/ubuntu/lazydl/Dockerfile -------------------------------------------------------------------------------- /ubuntu/standalone/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindrunner/docker-android-sdk/HEAD/ubuntu/standalone/Dockerfile --------------------------------------------------------------------------------