From 62ea653263f0a464d0f8680785631d6a77e517fc Mon Sep 17 00:00:00 2001 From: Dave Olsthoorn Date: Mon, 17 Aug 2020 19:44:06 +0200 Subject: [PATCH] Update README.md --- README.md | 30 ++++++++++++++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6154478..f35d151 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,33 @@ # setup-android -For setting up the android sdk in a github-action - +![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 Based on the project [android-problem-matchers-action](https://github.com/jonasb/android-problem-matchers-action) from [@jonasb](https://github.com/jonasb)