diff options
author | Stephen <stephengroat@users.noreply.github.com> | 2017-06-13 02:59:53 -0700 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2017-06-13 11:59:53 +0200 |
commit | 165fd84d58e8707fd5597268fd449ac0e874a69f (patch) | |
tree | 199558c7003a2b71d4999d2f7648cd210d6d139c /.travis.yml | |
parent | 0643b6c379c22ee8aa68809f93a0d29937209ce4 (diff) |
add travis builds and travis badge (#587)
* add travis builds and travis badge
* try accepting ALL licenses
* Update .travis.yml
* Update .travis.yml
* Update .travis.yml
* Update .travis.yml
* Update .travis.yml
* Update .travis.yml
* Update .travis.yml
* Update .travis.yml
* Update .travis.yml
* Update .travis.yml
* Update .travis.yml
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..94fd328f --- /dev/null +++ b/.travis.yml @@ -0,0 +1,15 @@ +language: android +jdk: oraclejdk8 +android: + components: + - android-25 + - build-tools + licenses: + - '.+' +install: + - echo y | android update sdk -u -a -t tools + - echo y | android update sdk -u -a -t platform-tools + - echo y | android update sdk -u -a -t build-tools-25.0.2 + - echo y | android update sdk -u -a -t android-25 + - echo y | android update sdk -u -a -t android-23 + - echo y | android update sdk -u -a -t extra-android-m2repository |