2020-07-14 17:41:00 +02:00
# setup-android
2020-01-03 11:37:01 +01:00
2020-08-17 19:44:06 +02:00

This action sets up the Android SDK tools by:
- Downloading the SDK commandline tools
- Accepting the SDK licenses
# Usage
See [action.yml ](action.yml )
## Basic
``` yaml
steps :
- uses : actions/checkout@v2
- name : Set up JDK 1.8
uses : actions/setup-java@v1
with :
java-version : 1.8
- name : Setup Android SDK
2020-09-11 18:17:31 -03:00
uses : android-actions/setup-android@v2
2020-08-17 19:44:06 +02:00
- name : Build SampleApplication
run : ./gradlew --no-daemon build
```
2020-01-03 21:38:11 +01:00
2020-07-14 17:41:00 +02:00
# Thanks
Based on the project [android-problem-matchers-action ](https://github.com/jonasb/android-problem-matchers-action ) from [@jonasb ](https://github.com/jonasb )