mirror of
https://gitea.com/actions/setup-android.git
synced 2025-12-10 18:36:55 +00:00
13f81365a437096ca29f87b1e7389bf0ea1385ed
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 1 to 2. - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/v1...v2) --- updated-dependencies: - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
setup-android
This action sets up the Android SDK tools by:
- Downloading the SDK commandline tools, if the current version (11.0) is not found in either
$ANDROID_SDK_ROOTor$HOME/.android/sdk. - Accepting the SDK licenses.
- Installing
toolsandplatform-tools. - Adding
platform-tools(contains adb) andcmdline-tools/11.0/bin(contains sdkmanager) to$PATH. - Setting up problem matchers.
On Windows 2016 runners, this action also checks if $ANDROID_SDK_ROOT path contains spaces.
If it does - it moves SDK to a path without spaces. This is needed because spaces are highly problematic:
C:\windows\system32\cmd.exe /D /S /C ""C:\Program Files (x86)\Android\android-sdk\cmdline-tools\3.0\bin\sdkmanager.bat" --licenses"
Error: Could not find or load main class Files
Usage
See action.yml
Basic
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Setup Android SDK
uses: android-actions/setup-android@v2
- name: Build SampleApplication
run: ./gradlew --no-daemon build
Thanks
Based on the project android-problem-matchers-action from @jonasb
Languages
TypeScript
84.5%
JavaScript
15.5%