Skip to content

Instantly share code, notes, and snippets.

https://drive.google.com/file/d/1exeaNYjRrGzmE2UmmbTqXHkc1Iza8wdZ/view?usp=sharing
@kigen
kigen / bitbucket-pipelines.yml
Created May 3, 2017 06:48
Android bitbucket pipeline config.
image: uber/android-build-environment:latest
pipelines:
default:
- step:
script:
- echo y | android update sdk --filter "extra-android-m2repository" --no-ui -a # Grab the Android Support Repo which isn't included in the container
- mkdir "${ANDROID_HOME}/licenses" || true
- echo "8933bad161af4178b1185d1a37fbf41ea5269c55" > "${ANDROID_HOME}/licenses/android-sdk-license"
- ./gradlew assembleRelease