Fork of jangrewe/gitlab-ci-android with ndk-bundle added.
2.7K
This Docker image contains the Android SDK and most common packages necessary for building Android apps in a CI tool like GitLab CI. Make sure your CI environment's caching works as expected, this greatly improves the build time, especially if you use multiple build jobs.
Note: This was originally forked from jangrewe/gitlab-ci-android, but has by now diverged.
ndk-bundle installed.A .gitlab-ci.yml with caching of your project's dependencies would look like this:
image: jfinkhaeuser/gitlab-ci-android-ndk
stages:
- build
before_script:
- export GRADLE_USER_HOME=$(pwd)/.gradle
- chmod +x ./gradlew
cache:
key: ${CI_PROJECT_ID}
paths:
- .gradle/
build:
stage: build
script:
- ./gradlew assembleDebug
artifacts:
paths:
- app/build/outputs/apk/app-debug.apk
Content type
Image
Digest
Size
2.7 GB
Last updated
over 4 years ago
docker pull jfinkhaeuser/gitlab-ci-android-ndk