mirror of
https://github.com/android-actions/setup-android
synced 2024-11-22 13:29:35 -08:00
Update README.md
This commit is contained in:
parent
f7a7114037
commit
62ea653263
1 changed files with 28 additions and 2 deletions
30
README.md
30
README.md
|
@ -1,7 +1,33 @@
|
||||||
# setup-android
|
# setup-android
|
||||||
For setting up the android sdk in a github-action
|
|
||||||
|
|
||||||
<!-- TODO: write readme -->
|
![Build & Test](https://github.com/android-actions/setup-android/workflows/Build%20&%20Test/badge.svg)
|
||||||
|
|
||||||
|
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
|
||||||
|
uses: android-actions/setup-android@v1
|
||||||
|
|
||||||
|
- name: Build SampleApplication
|
||||||
|
run: ./gradlew --no-daemon build
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
# Thanks
|
# Thanks
|
||||||
Based on the project [android-problem-matchers-action](https://github.com/jonasb/android-problem-matchers-action) from [@jonasb](https://github.com/jonasb)
|
Based on the project [android-problem-matchers-action](https://github.com/jonasb/android-problem-matchers-action) from [@jonasb](https://github.com/jonasb)
|
||||||
|
|
Loading…
Reference in a new issue