├── .gitignore ├── LICENSE ├── README.md ├── android-build-tools-installer └── debian │ ├── compat │ ├── control │ ├── copyright │ ├── dirs │ ├── google-android-build-tools-installer.lintian-overrides │ ├── install │ ├── postinst │ ├── postrm │ ├── reportbug │ └── script │ ├── rules │ └── source │ └── format └── configure.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfonville/android-build-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfonville/android-build-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfonville/android-build-tools/HEAD/README.md -------------------------------------------------------------------------------- /android-build-tools-installer/debian/compat: -------------------------------------------------------------------------------- 1 | 13 2 | -------------------------------------------------------------------------------- /android-build-tools-installer/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfonville/android-build-tools/HEAD/android-build-tools-installer/debian/control -------------------------------------------------------------------------------- /android-build-tools-installer/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfonville/android-build-tools/HEAD/android-build-tools-installer/debian/copyright -------------------------------------------------------------------------------- /android-build-tools-installer/debian/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfonville/android-build-tools/HEAD/android-build-tools-installer/debian/dirs -------------------------------------------------------------------------------- /android-build-tools-installer/debian/google-android-build-tools-installer.lintian-overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfonville/android-build-tools/HEAD/android-build-tools-installer/debian/google-android-build-tools-installer.lintian-overrides -------------------------------------------------------------------------------- /android-build-tools-installer/debian/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfonville/android-build-tools/HEAD/android-build-tools-installer/debian/install -------------------------------------------------------------------------------- /android-build-tools-installer/debian/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfonville/android-build-tools/HEAD/android-build-tools-installer/debian/postinst -------------------------------------------------------------------------------- /android-build-tools-installer/debian/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfonville/android-build-tools/HEAD/android-build-tools-installer/debian/postrm -------------------------------------------------------------------------------- /android-build-tools-installer/debian/reportbug/script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfonville/android-build-tools/HEAD/android-build-tools-installer/debian/reportbug/script -------------------------------------------------------------------------------- /android-build-tools-installer/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfonville/android-build-tools/HEAD/android-build-tools-installer/debian/rules -------------------------------------------------------------------------------- /android-build-tools-installer/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfonville/android-build-tools/HEAD/configure.sh --------------------------------------------------------------------------------