-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy path.travis.yml
More file actions
35 lines (28 loc) · 763 Bytes
/
Copy path.travis.yml
File metadata and controls
35 lines (28 loc) · 763 Bytes
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
language: android
jdk:
- oraclejdk8
sudo: false
cache:
directories:
- $HOME/.gradle/caches/
env:
global:
MALLOC_ARENA_MAX=2
android:
components:
- tools
- platform-tools
- build-tools-26.0.3
- android-27
- extra-google-m2repository
- extra-android-m2repository
before_install:
# Install SDK license so Android Gradle plugin can install deps.
- mkdir "$ANDROID_HOME/licenses" || true
- echo "d56f5187479451eabf01fb78af6dfcb131a6481e" > "$ANDROID_HOME/licenses/android-sdk-license"
before_script:
- export "JAVA_OPTS=-Xmx1024m"
- export "JAVA7_HOME=/usr/lib/jvm/java-7-oracle"
- export "JAVA8_HOME=/usr/lib/jvm/java-8-oracle"
script:
- ./gradlew :app:assembleDebug testDebugUnitTest --stacktrace