Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/acomminos/Plumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Comminos <andrew@comminos.com>2016-01-19 11:16:34 +0300
committerAndrew Comminos <andrew@comminos.com>2016-01-19 11:36:06 +0300
commit87bb80560c1e2ec1c6bf128afc0e2a4dd0647919 (patch)
tree81406b469c501fd75df0b2f98e03e0eb2a095c6e
parentc0676f52935a829ad40a33f2f131fd64e9cdd8ee (diff)
Initial attempt at getting Travis to install the NDK.
-rw-r--r--.travis.yml8
1 files changed, 7 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 496ea9f..93746c5 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -4,4 +4,10 @@ android:
- build-tools-21.1.1
- build-tools-19.1.0
- android-21
-script: ./gradlew assembleNightly
+before_install:
+ - wget http://dl.google.com/android/ndk/android-ndk-r10e-linux-x86_64.bin -O ndk.bin
+ - chmod +x ndk.bin
+ - ./ndk.bin -y > /dev/null
+script:
+ - ./android-ndk-r10e/ndk-build -C libraries/Jumble/src/main/jni/
+ - ./gradlew assembleNightly