├── .gitignore ├── Dockerfile ├── README.md ├── licenses ├── android-sdk-license └── android-sdk-preview-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 /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-android-sdk/android-30/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-android-sdk/android-30/HEAD/README.md -------------------------------------------------------------------------------- /licenses/android-sdk-license: -------------------------------------------------------------------------------- 1 | 2 | 8933bad161af4178b1185d1a37fbf41ea5269c55 3 | -------------------------------------------------------------------------------- /licenses/android-sdk-preview-license: -------------------------------------------------------------------------------- 1 | 2 | 84831b9409646a918e30573bab4c9c91346d8abd 3 | -------------------------------------------------------------------------------- /tools/android-accept-licenses.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-android-sdk/android-30/HEAD/tools/android-accept-licenses.sh -------------------------------------------------------------------------------- /tools/android-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-android-sdk/android-30/HEAD/tools/android-env.sh -------------------------------------------------------------------------------- /tools/android-sdk-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-android-sdk/android-30/HEAD/tools/android-sdk-update.sh -------------------------------------------------------------------------------- /tools/android-wait-for-emulator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-android-sdk/android-30/HEAD/tools/android-wait-for-emulator.sh -------------------------------------------------------------------------------- /tools/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-android-sdk/android-30/HEAD/tools/entrypoint.sh -------------------------------------------------------------------------------- /tools/package-list-minimal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-android-sdk/android-30/HEAD/tools/package-list-minimal.txt -------------------------------------------------------------------------------- /tools/package-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-android-sdk/android-30/HEAD/tools/package-list.txt --------------------------------------------------------------------------------