setup-android/README.md

43 lines
1.4 KiB
Markdown
Raw Normal View History

2020-07-14 08:41:00 -07:00
# setup-android
2020-01-03 02:37:01 -08:00
2020-08-17 10:44:06 -07:00
![Build & Test](https://github.com/android-actions/setup-android/workflows/Build%20&%20Test/badge.svg)
This action sets up the Android SDK tools by:
2022-08-03 06:44:44 -07:00
- Downloading the SDK commandline tools, if the current version (7.0) is not found in either `$ANDROID_SDK_ROOT` or `$HOME/.android/sdk`.
- Accepting the SDK licenses.
- Installing `tools` and `platform-tools`.
- Adding `platform-tools` (contains adb) and `cmdline-tools/7.0/bin` (contains sdkmanager) to `$PATH`.
- Setting up problem [matchers](/matchers.json).
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
```
2020-08-17 10:44:06 -07:00
# Usage
See [action.yml](action.yml)
## Basic
```yaml
steps:
- uses: actions/checkout@v3
2020-08-17 10:44:06 -07:00
- name: Set up JDK 1.8
uses: actions/setup-java@v3
2020-08-17 10:44:06 -07:00
with:
java-version: 1.8
- name: Setup Android SDK
2020-09-11 14:17:31 -07:00
uses: android-actions/setup-android@v2
2020-08-17 10:44:06 -07:00
- name: Build SampleApplication
run: ./gradlew --no-daemon build
```
2020-01-03 12:38:11 -08:00
2020-07-14 08:41:00 -07:00
# Thanks
Based on the project [android-problem-matchers-action](https://github.com/jonasb/android-problem-matchers-action) from [@jonasb](https://github.com/jonasb)