-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path.travis.yml
38 lines (34 loc) · 917 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
38
os:
- linux
# - osx # not really important, but nice to know
language: android
jdk: oraclejdk8
env:
global:
- ANDROID_API_LEVEL=26
android:
components:
- tools
- platform-tools
- tools
# Build tools uses in the project
- build-tools
# Android version to compile the project
- android-$ANDROID-API-LEVEL
- extra-google-google_play_services
- extra-google-m2repository
- extra-android-m2repository
- addon-google_apis-google-$ANDROID_API_LEVEL
licenses:
- 'android-sdk-preview-license-.+'
- 'android-sdk-license-.+'
- 'google-gdk-license-.+'
before_install:
- yes | sdkmanager "platforms;android-$ANDROID_API_LEVEL"
- openssl aes-256-cbc -K $encrypted_2f5cd030954f_key -iv $encrypted_2f5cd030954f_iv -in google-services.json.enc -out app/google-services.json -d
script:
./gradlew build check
#before_script:
#after_failure:
#
#after_success: