-
Notifications
You must be signed in to change notification settings - Fork 5
/
.travis.yml
37 lines (37 loc) · 1018 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
language : android
sudo : required
jdk : oraclejdk8
env:
global :
- ANROID_API_LEVEL = "28"
- ANDROID_BUILD_TOOLS_VERSION = "28.0.3"
android :
components :
- tools
- platform-tools
- build-tools-$ANDROID_BUILD_TOOLS_VERSION
- android - $ANDROID_API_LEVEL
- extra-google-google_play_services
- extra-google-m2repository
- addon-google_apis-google-$ANDROID_API_LEVEL
licences :
- 'android-sdk-preview-license-.+'
- 'android-sdk-license-.+'
- 'google-gdk-license-.+'
- '.+'
before_script :
- mkdir -p "$ANDROID_HOME/licenses"
- cp ./licenses/* "$ANDROID_HOME/licenses"
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
script :
- ./gradlew build check
before_install:
- chmod +x gradlew
- echo y | yes | sdkmanager --update --sdk_root=$ANDROID_SDK_PATH