31 lines
No EOL
624 B
YAML
31 lines
No EOL
624 B
YAML
language: android
|
|
|
|
android:
|
|
components:
|
|
# Uncomment the lines below if you want to
|
|
# use the latest revision of Android SDK Tools
|
|
# - tools
|
|
# - platform-tools
|
|
|
|
# The BuildTools version used by your project
|
|
- build-tools-28.0.3
|
|
|
|
# The SDK version used to compile your project
|
|
- android-28
|
|
|
|
|
|
jdk:
|
|
- oraclejdk8
|
|
|
|
before_install:
|
|
- chmod +x gradlew
|
|
|
|
before_cache:
|
|
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
|
|
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/.gradle/caches/
|
|
- $HOME/.gradle/wrapper/
|
|
- $HOME/.android/build-cache |