From c15ddde6eba62db8a20c502fa44acfa39b96ea33 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Mon, 24 Apr 2017 18:21:25 +0200 Subject: [PATCH] Make travisCI publish nightly kiwix-android APKs. --- travis/compile_all.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/travis/compile_all.sh b/travis/compile_all.sh index 506824d..a7c5cc4 100755 --- a/travis/compile_all.sh +++ b/travis/compile_all.sh @@ -71,6 +71,11 @@ EOF tar -czf "${NIGHTLY_ARCHIVES_DIR}/$ARCHIVE_NAME" $FILES_LIST ) ;; + android_*) + APK_NAME="kiwix-${PLATFORM}" + cp ${BASE_DIR}/kiwix-android/app/build/outputs/apk/app-kiwix-debug.apk ${NIGHTLY_ARCHIVES_DIR}/${APK_NAME}-debug.apk + cp ${BASE_DIR}/kiwix-android/app/build/outputs/apk/app-kiwix-release-unsigned.apk ${NIGHTLY_ARCHIVES_DIR}/${APK_NAME}-release-unsigned.apk + ;; esac else