├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ └── bug-report.md └── workflows │ └── docker-image.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── EULA ├── AndroidSDKPreviewLicenseAgreement ├── AndroidSoftwareDevelopmentKitLicenseAgreement-20151120 ├── AndroidSoftwareDevelopmentKitLicenseAgreement-20190116 ├── AndroidSoftwareDevelopmentKitLicenseAgreement-20210727 └── IntelAndroidExtraLicense ├── LICENSE ├── README.md ├── android-sdk ├── Dockerfile ├── accredited-keys │ └── .gitignore ├── firebase-test-lab │ ├── Dockerfile │ └── version-inspector.sh ├── license-accepter.sh ├── sshd-banner ├── supervisord.conf ├── version-inspector.sh └── vnc │ ├── Dockerfile │ ├── supervisord-vncserver.conf │ ├── version-inspector.sh │ ├── vnc-pass.sh │ ├── vncserver-daemon.sh │ └── watchdog.sh ├── assets ├── SSH.png ├── emulator-error-process-not-responding.png ├── logo.png └── vnc.png ├── gradle-server ├── .gitignore ├── Dockerfile └── gradle-downloader.sh ├── image-publisher.sh └── misc └── MemoryFiller ├── .gitignore └── MemoryFiller.java /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thyrlian/AndroidSDK/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thyrlian/AndroidSDK/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thyrlian/AndroidSDK/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thyrlian/AndroidSDK/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thyrlian/AndroidSDK/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thyrlian/AndroidSDK/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /EULA/AndroidSDKPreviewLicenseAgreement: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thyrlian/AndroidSDK/HEAD/EULA/AndroidSDKPreviewLicenseAgreement -------------------------------------------------------------------------------- /EULA/AndroidSoftwareDevelopmentKitLicenseAgreement-20151120: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thyrlian/AndroidSDK/HEAD/EULA/AndroidSoftwareDevelopmentKitLicenseAgreement-20151120 -------------------------------------------------------------------------------- /EULA/AndroidSoftwareDevelopmentKitLicenseAgreement-20190116: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thyrlian/AndroidSDK/HEAD/EULA/AndroidSoftwareDevelopmentKitLicenseAgreement-20190116 -------------------------------------------------------------------------------- /EULA/AndroidSoftwareDevelopmentKitLicenseAgreement-20210727: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thyrlian/AndroidSDK/HEAD/EULA/AndroidSoftwareDevelopmentKitLicenseAgreement-20210727 -------------------------------------------------------------------------------- /EULA/IntelAndroidExtraLicense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thyrlian/AndroidSDK/HEAD/EULA/IntelAndroidExtraLicense -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thyrlian/AndroidSDK/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thyrlian/AndroidSDK/HEAD/README.md -------------------------------------------------------------------------------- /android-sdk/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thyrlian/AndroidSDK/HEAD/android-sdk/Dockerfile -------------------------------------------------------------------------------- /android-sdk/accredited-keys/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /android-sdk/firebase-test-lab/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thyrlian/AndroidSDK/HEAD/android-sdk/firebase-test-lab/Dockerfile -------------------------------------------------------------------------------- /android-sdk/firebase-test-lab/version-inspector.sh: -------------------------------------------------------------------------------- 1 | gcloud info 2 | -------------------------------------------------------------------------------- /android-sdk/license-accepter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thyrlian/AndroidSDK/HEAD/android-sdk/license-accepter.sh -------------------------------------------------------------------------------- /android-sdk/sshd-banner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thyrlian/AndroidSDK/HEAD/android-sdk/sshd-banner -------------------------------------------------------------------------------- /android-sdk/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thyrlian/AndroidSDK/HEAD/android-sdk/supervisord.conf -------------------------------------------------------------------------------- /android-sdk/version-inspector.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thyrlian/AndroidSDK/HEAD/android-sdk/version-inspector.sh -------------------------------------------------------------------------------- /android-sdk/vnc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thyrlian/AndroidSDK/HEAD/android-sdk/vnc/Dockerfile -------------------------------------------------------------------------------- /android-sdk/vnc/supervisord-vncserver.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thyrlian/AndroidSDK/HEAD/android-sdk/vnc/supervisord-vncserver.conf -------------------------------------------------------------------------------- /android-sdk/vnc/version-inspector.sh: -------------------------------------------------------------------------------- 1 | tightvncserver -version 2 | : 3 | -------------------------------------------------------------------------------- /android-sdk/vnc/vnc-pass.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thyrlian/AndroidSDK/HEAD/android-sdk/vnc/vnc-pass.sh -------------------------------------------------------------------------------- /android-sdk/vnc/vncserver-daemon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thyrlian/AndroidSDK/HEAD/android-sdk/vnc/vncserver-daemon.sh -------------------------------------------------------------------------------- /android-sdk/vnc/watchdog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thyrlian/AndroidSDK/HEAD/android-sdk/vnc/watchdog.sh -------------------------------------------------------------------------------- /assets/SSH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thyrlian/AndroidSDK/HEAD/assets/SSH.png -------------------------------------------------------------------------------- /assets/emulator-error-process-not-responding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thyrlian/AndroidSDK/HEAD/assets/emulator-error-process-not-responding.png -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thyrlian/AndroidSDK/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/vnc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thyrlian/AndroidSDK/HEAD/assets/vnc.png -------------------------------------------------------------------------------- /gradle-server/.gitignore: -------------------------------------------------------------------------------- 1 | *gradle*.zip* 2 | -------------------------------------------------------------------------------- /gradle-server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thyrlian/AndroidSDK/HEAD/gradle-server/Dockerfile -------------------------------------------------------------------------------- /gradle-server/gradle-downloader.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thyrlian/AndroidSDK/HEAD/gradle-server/gradle-downloader.sh -------------------------------------------------------------------------------- /image-publisher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thyrlian/AndroidSDK/HEAD/image-publisher.sh -------------------------------------------------------------------------------- /misc/MemoryFiller/.gitignore: -------------------------------------------------------------------------------- 1 | *.class 2 | *.log 3 | .idea 4 | -------------------------------------------------------------------------------- /misc/MemoryFiller/MemoryFiller.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thyrlian/AndroidSDK/HEAD/misc/MemoryFiller/MemoryFiller.java --------------------------------------------------------------------------------