From 14d465150469acda921730781ab7340e078076eb Mon Sep 17 00:00:00 2001 From: Isaac Hutt Date: Tue, 2 Jan 2018 22:51:11 +0000 Subject: [PATCH] Fix Android APK output location --- travis/compile_all.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/travis/compile_all.sh b/travis/compile_all.sh index 9129fd3..fe8fba8 100755 --- a/travis/compile_all.sh +++ b/travis/compile_all.sh @@ -119,7 +119,7 @@ EOF ;; android_*) APK_NAME="kiwix-${PLATFORM}" - cp ${BASE_DIR}/kiwix-android/app/build/outputs/apk/kiwix/release/app-kiwix-debug.apk ${NIGHTLY_ARCHIVES_DIR}/${APK_NAME}-debug.apk + cp ${BASE_DIR}/kiwix-android/app/build/outputs/apk/kiwix/debug/app-kiwix-debug.apk ${NIGHTLY_ARCHIVES_DIR}/${APK_NAME}-debug.apk cp ${BASE_DIR}/kiwix-android/app/build/outputs/apk/kiwix/release/app-kiwix-release-unsigned.apk ${NIGHTLY_ARCHIVES_DIR}/${APK_NAME}-release-unsigned.apk ;; esac