Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/seanghay/android-ci

Docker Image of Android CI for API 29
https://github.com/seanghay/android-ci

android-ci docker

Last synced: about 1 month ago
JSON representation

Docker Image of Android CI for API 29

Awesome Lists containing this project

README

        

## Docker Image for Android CI
You can use this image for building your Android app within your CI.


Pulls

```sh
docker pull seanghay/android-ci:latest
```

-----

## Usage in GitLab CI

```yaml
image: seanghay/android-ci

before_script:
- chmod +x ./gradlew

stages:
- build

cache:
paths:
- .gradle/wrapper
- .gradle/caches

assembleDebug:
stage: build
script:
- ./gradlew assembleDebug
- cp app/build/outputs/apk/debug/app-debug.apk app-debug.apk
artifacts:
paths:
- app-debug.apk

```