URI: 
       tandroid build: fix warning re ndk_api - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 8999e92f76f39a965fc8d49a3efe56b1daa187fa
   DIR parent a62e5d39ca14b5f6cd144828fdc390f987d19f2d
  HTML Author: SomberNight <somber.night@protonmail.com>
       Date:   Thu,  6 Dec 2018 13:43:24 +0100
       
       android build: fix warning re ndk_api
       
       "NDK API target was not set manually, using the default of 21 = min(android-api=28, default ndk-api=21)"
       
       Diffstat:
         M electrum/gui/kivy/tools/buildozer.… |       5 ++++-
       
       1 file changed, 4 insertions(+), 1 deletion(-)
       ---
   DIR diff --git a/electrum/gui/kivy/tools/buildozer.spec b/electrum/gui/kivy/tools/buildozer.spec
       t@@ -57,7 +57,7 @@ android.permissions = INTERNET, CAMERA
        # (int) Android API to use
        android.api = 28
        
       -# (int) Minimum API required (8 = Android 2.2 devices)
       +# (int) Minimum API required. You will need to set the android.ndk_api to be as low as this value.
        android.minapi = 21
        
        # (int) Android SDK version to use
       t@@ -66,6 +66,9 @@ android.sdk = 24
        # (str) Android NDK version to use
        android.ndk = 14b
        
       +(int) Android NDK API to use (optional). This is the minimum API your app will support.
       +android.ndk_api = 21
       +
        # (bool) Use --private data storage (True) or --dir public storage (False)
        android.private_storage = True