Skip to content
This repository has been archived by the owner on Apr 19, 2018. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Add Travis config.
  • Loading branch information
JakeWharton committed Oct 6, 2012
1 parent c2b6cb5 commit 4edaaf1
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .travis.yml
@@ -0,0 +1,16 @@
language: java

notifications:
email: false

before_install:
# download the latest android sdk and unzip
- wget http://dl.google.com/android/android-sdk_r20.0.3-linux.tgz
- tar -zxf android-sdk_r20.0.3-linux.tgz
# setup your ANDROID_HOME and PATH environment variables
# use ~/builds/[Github username]/[project]/android-sdk-linux
- export ANDROID_HOME=~/builds/JakeWharton/ActionBarSherlock/android-sdk-linux
- export PATH=${PATH}:${ANDROID_HOME}/tools:${ANDROID_HOME}/platform-tools
# only update the sdk for the tools and platform-tools (1,2) and whatever api level
# you are building for android (run "android list sdk" to get the full list. 9 = 4.1 or API level 16
- android update sdk --filter 3 --no-ui --force

0 comments on commit 4edaaf1

Please sign in to comment.