mirror of https://github.com/tasks/tasks
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
707 B
YAML
27 lines
707 B
YAML
language: android
|
|
sudo: false
|
|
jdk: oraclejdk8
|
|
env:
|
|
matrix:
|
|
- ANDROID_TARGET=android-21 ANDROID_ABI=armeabi-v7a
|
|
android:
|
|
components:
|
|
- tools # https://github.com/travis-ci/travis-ci/issues/5049
|
|
- android-24
|
|
- platform-tools-24.0.2
|
|
- build-tools-24.0.2
|
|
- extra-android-m2repository
|
|
- extra-google-m2repository
|
|
licenses:
|
|
- 'android-sdk-license-.+'
|
|
|
|
before_install:
|
|
- echo no | android create avd --force -n test -t $ANDROID_TARGET --abi $ANDROID_ABI
|
|
- emulator -avd test -no-skin -no-audio -no-window &
|
|
- ./.wait_for_emulator.sh
|
|
- adb shell input keyevent 82 &
|
|
|
|
script:
|
|
- ./gradlew :lintGoogleplayProdDebug
|
|
- ./gradlew :connectedGoogleplayProdDebugAndroidTest
|