Skip to content

Commit

Permalink
Create .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
alhazmy13 committed Jun 11, 2016
1 parent 3de1196 commit 139e5fe
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .travis.yml
@@ -0,0 +1,26 @@
language: android

jdk: oraclejdk7

env:
matrix:
- ANDROID_TARGET=android-19 ANDROID_ABI=armeabi-v7a

android:
components:
- build-tools-21.1.1

notifications:
email: false

before_script:
# Grant execution permissions to Gradle wrapper
- chmod +x gradlew

# Create and start emulator
- echo no | android create avd --force -n test -t $ANDROID_TARGET --abi $ANDROID_ABI
- emulator -avd test -no-skin -no-audio -no-window &
- adb wait-for-device
- adb shell input keyevent 82 &

script: ./gradlew connectedAndroidTest --stacktrace --info

0 comments on commit 139e5fe

Please sign in to comment.