Skip to content

Commit

Permalink
Add travis file with gradle script
Browse files Browse the repository at this point in the history
  • Loading branch information
Neil Davies committed Jul 15, 2014
1 parent 2e1a4b4 commit 3a41080
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
language: android
jdk: oraclejdk7
env:
matrix:
- ANDROID_TARGET=android-19 ANDROID_ABI=armeabi-v7a

android:
components:
- build-tools-19.0.0

before_script:
# 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 connectedInstrumentTestlanguage: android
android:
components:
- build-tools-19.0.2

0 comments on commit 3a41080

Please sign in to comment.