From 8404e0706191b8dcca7d1c5ed37c947594606904 Mon Sep 17 00:00:00 2001 From: SomberNight Date: Sun, 1 Sep 2019 20:05:40 +0200 Subject: [PATCH] only build one android apk on Travis follow-up 0333632eb078b59ad646d95348a52e2c88c2f7a8 --- .travis.yml | 2 ++ electrum/gui/kivy/Readme.md | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 0752ed5a8..634c5b1c1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -58,6 +58,8 @@ jobs: name: "Android build" language: python python: 3.7 + env: + - CI=true services: - docker install: diff --git a/electrum/gui/kivy/Readme.md b/electrum/gui/kivy/Readme.md index 29c9678c5..1be6c6f98 100644 --- a/electrum/gui/kivy/Readme.md +++ b/electrum/gui/kivy/Readme.md @@ -67,7 +67,7 @@ You probably need to clear the cache: `rm -rf .buildozer/android/platform/build/ ### How do I deploy on connected phone for quick testing? Assuming `adb` is installed: ``` -$ adb -d install -r bin/Electrum-*-debug.apk +$ adb -d install -r bin/Electrum-*-arm64-v8a-debug.apk $ adb shell monkey -p org.electrum.electrum 1 ```