-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
34 lines (29 loc) · 1.07 KB
/
.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
language: android
jdk:
- oraclejdk8
env:
global:
# Remember to keep this in sync with config.properties
- compileSdkVersion=23
- minSdkVersion=17
- targetSdkVersion=19
- toolsVersion=25.0.3
- ANDROID_ABI=armeabi-v7a
- secure: "LipL0wPv0uQrKitaeGxCpoQsx5sl/Pg/DtQv4S7Bi52DxfArgvD2hPB0TWgkgYGJPfENHLEyqg+H+/v2nON3IXY+cnsd+TW+P1T03/52D56ieSKGVtVtSYUOZUgoyxIIvRZWFh/UNg+AmZIjOCTJDLitBTUxD8kWux8NjhIqZow="
android:
components:
# The SDK version used to compile your project
- android-${compileSdkVersion}
# The BuildTools version used by your project
- tools
- build-tools-${toolsVersion}
# if you need to run emulator(s) during your tests
- sys-img-${ANDROID_ABI}-android-${targetSdkVersion}
before_install: ./ciLicense.sh
# Emulator Management: Create, Start and Wait
before_script:
- echo no | android create avd --force -n test -t android-${targetSdkVersion} --abi ${ANDROID_ABI}
- emulator -avd test -no-audio -no-window &
- android-wait-for-emulator
- adb shell input keyevent 82 &
after_success: ./ciPublish.sh