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

github.com/nextcloud/ncsms-android.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLoic Blot <loic.blot@unix-experience.fr>2018-02-09 01:19:25 +0300
committerLoïc Blot <nerzhul@users.noreply.github.com>2018-02-10 01:59:01 +0300
commitd57810b5d86550f6bdb8a0d2884c2f844d9a90ee (patch)
treea5383457091f5ada4f3171946fb51a3e1c9c1574 /.travis.yml
parent5317dc4fd998e1690304183aa8d039eaeb93980d (diff)
Replace C++ with Cmake with GoLang gomobile
* Add ncsmsgo.arr which is the GoLang gomobile part See: https://gitlab.com/nerzhul/ncsmsgo * Android-NDK is not needed anymore * Android app getVersion() now uses the Golang part * Use the next getLastHTTPStatus() call in getVersion() * Android app pushSms() now uses the Golang part * JNI SmsBuffer has been replaced with GoLang aar bindings -> This permits to remove some java code & increase performance * Prepare a insecure switch flag to the Golang client
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml10
1 files changed, 3 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml
index 07261c2..ebcd8b1 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -11,6 +11,9 @@ cache:
jdk:
- oraclejdk8
+before_install:
+ - yes | sdkmanager "platforms;android-27"
+
android:
components:
- tools
@@ -23,10 +26,3 @@ android:
- 'google-gdk-license-.+'
- 'android-sdk-preview-license-.+'
- 'android-.*'
-
-before_install:
- - wget https://dl.google.com/android/repository/android-ndk-r16-linux-x86_64.zip > /dev/null
- - mkdir -p /usr/local/android-sdk/ndk-bundle
- - unzip android-ndk-r16-linux-x86_64.zip -d /usr/local/android-sdk/ndk-bundle > /dev/null
- - export ANDROID_NDK_HOME="/usr/local/android-sdk/ndk-bundle/android-ndk-r16"
- - rm -Rf "${ANDROID_HOME}/cmake" \ No newline at end of file