URI: 
       tandroid build: bump targetSdkVersion to 29 (follow-up) - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 6f105ae43bb624654fbe74a976c439f5fb75efd7
   DIR parent 827f00896cf08f8631ba9060dad6059c4d7fc605
  HTML Author: SomberNight <somber.night@protonmail.com>
       Date:   Wed, 18 Nov 2020 20:22:13 +0100
       
       android build: bump targetSdkVersion to 29 (follow-up)
       
       follow-up: 59e9337be07bbc5439a4ceedaddf4d163e9c0fa2
       
       For some reason, without this change, the first build works but subsequent builds fail.
       Not sure what the cause is. This is why Travis builds work.
       
       Diffstat:
         M contrib/android/Dockerfile          |       2 +-
         M contrib/android/buildozer.spec      |       3 ++-
       
       2 files changed, 3 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/contrib/android/Dockerfile b/contrib/android/Dockerfile
       t@@ -67,7 +67,7 @@ RUN yes | ${ANDROID_SDK_MANAGER} --licenses > /dev/null
        
        # download platforms, API, build tools
        RUN ${ANDROID_SDK_MANAGER} "platforms;android-24" > /dev/null && \
       -    ${ANDROID_SDK_MANAGER} "platforms;android-28" > /dev/null && \
       +    ${ANDROID_SDK_MANAGER} "platforms;android-29" > /dev/null && \
            ${ANDROID_SDK_MANAGER} "build-tools;${ANDROID_SDK_BUILD_TOOLS_VERSION}" > /dev/null && \
            ${ANDROID_SDK_MANAGER} "extras;android;m2repository" > /dev/null && \
            chmod +x "${ANDROID_SDK_HOME}/tools/bin/avdmanager"
   DIR diff --git a/contrib/android/buildozer.spec b/contrib/android/buildozer.spec
       t@@ -70,7 +70,8 @@ fullscreen = False
        # (list) Permissions
        android.permissions = INTERNET, CAMERA, WRITE_EXTERNAL_STORAGE
        
       -# (int) Android API to use  (targetSdkVersion)
       +# (int) Android API to use  (targetSdkVersion AND compileSdkVersion)
       +# note: when changing, Dockerfile also needs to be changed to install corresponding build tools
        android.api = 29
        
        # (int) Minimum API required. You will need to set the android.ndk_api to be as low as this value.