commit 8404e0706191b8dcca7d1c5ed37c947594606904
parent 0534f937abcb980849e9cb47467cd692b7f92d80
Author: SomberNight <somber.night@protonmail.com>
Date: Sun, 1 Sep 2019 20:05:40 +0200
only build one android apk on Travis
follow-up 0333632eb078b59ad646d95348a52e2c88c2f7a8
Diffstat:
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git 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
@@ -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
```