# android-sdk-setup **Repository Path**: flowci-plugins/android-sdk-setup ## Basic Information - **Project Name**: android-sdk-setup - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-07-26 - **Last Updated**: 2021-07-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # android-sdk-setup ## Description Install android sdk with specific version ## Inputs - `ANDROID_COMPILE_SDK`: android sdk version, for example: `28` - `ANDROID_BUILD_TOOLS`: sdk build tool version, for example: `28.0.2` - `ANDROID_COMMANDLINE_TOOLS` (optional): commnad tool version, default is `6514223` ## Exports It will export the flowing envrionment variables to job context: [refs](https://developer.android.com/studio/command-line/variables) - `ANDROID_HOME` - `ANDROID_SDK_HOME` - `ANDROID_COMPILE_SDK` - `ANDROID_BUILD_TOOLS` ## How to use it ```yml steps: - name: setup android sdk docker: image: openjdk:8-jdk envs: ANDROID_COMPILE_SDK: "28" ANDROID_BUILD_TOOLS: "28.0.2" plugin: android-sdk-setup ```