diff options
author | Will Szumski <will@cowboycoders.org> | 2016-11-22 23:43:30 +0000 |
---|---|---|
committer | yvesf <yvesf-git@xapek.org> | 2016-11-28 19:08:12 +0100 |
commit | b63fae572b5acb0c77feed85bacc24be03cb040c (patch) | |
tree | 7919b810ce0fa7008356526baa6a0504d9ef923e /.travis.yml | |
parent | 1a8871f3fee67b3e3d6eaab432230e1d77a09643 (diff) | |
download | andiodine-b63fae572b5acb0c77feed85bacc24be03cb040c.tar.gz andiodine-b63fae572b5acb0c77feed85bacc24be03cb040c.zip |
Use Urho3d pre-installed ndk
As per:
https://github.com/googlesamples/android-ndk/blob/1aaccfa48e9e66778bb9abd87c3b78c5a5605938/.travis.yml
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index cc50c8a..8478d83 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,13 @@ language: android + jdk: - oraclejdk8 + android: components: - build-tools-21.1.2 - android-15 + +before_install: +- git clone https://github.com/urho3d/android-ndk.git $HOME/android-ndk-root +- export ANDROID_NDK_HOME=$HOME/android-ndk-root |