2016-12-28 15:58:44 +01:00
|
|
|
language: android
|
|
|
|
jdk: oraclejdk8
|
|
|
|
env:
|
|
|
|
matrix:
|
2017-04-22 10:18:31 +02:00
|
|
|
- ANDROID_TARGET=android-23 ANDROID_ABI=x86
|
2016-12-28 15:58:44 +01:00
|
|
|
android:
|
|
|
|
components:
|
|
|
|
- platform-tools
|
|
|
|
- tools
|
2018-01-25 08:13:20 +01:00
|
|
|
- build-tools-27.0.2
|
2017-04-22 10:18:31 +02:00
|
|
|
- android-23
|
2016-12-28 15:58:44 +01:00
|
|
|
- extra-google-m2repository
|
|
|
|
- extra-android-m2repository
|
|
|
|
- extra-google-google_play_services
|
|
|
|
|
2018-01-25 13:28:46 +01:00
|
|
|
before_install:
|
|
|
|
- yes | sdkmanager "platforms;android-27"
|
|
|
|
|
2016-12-28 15:58:44 +01:00
|
|
|
script:
|
|
|
|
# Unit Test
|
2018-03-13 23:48:14 +01:00
|
|
|
- ./gradlew -Pcoverage test jacocoTestReport
|
2018-01-10 23:31:31 +01:00
|
|
|
|
|
|
|
after_success:
|
|
|
|
- bash <(curl -s https://codecov.io/bash)
|