From 1ec57c080c522e58654037e81613d404d69a874e Mon Sep 17 00:00:00 2001 From: Greyson Parrelli Date: Wed, 14 Oct 2020 16:38:48 -0400 Subject: [PATCH] Update targetSdk to 29. --- app/build.gradle | 6 +++--- reproducible-builds/Dockerfile | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 8b62eeafad..db61d897dd 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -92,8 +92,8 @@ def abiPostFix = ['universal' : 0, android { flavorDimensions "none" - compileSdkVersion 28 - buildToolsVersion '28.0.3' + compileSdkVersion 29 + buildToolsVersion '29.0.3' useLibrary 'org.apache.http.legacy' dexOptions { @@ -114,7 +114,7 @@ android { versionName canonicalVersionName minSdkVersion 19 - targetSdkVersion 28 + targetSdkVersion 29 multiDexEnabled true vectorDrawables.useSupportLibrary = true diff --git a/reproducible-builds/Dockerfile b/reproducible-builds/Dockerfile index 6aa491d2f9..14c1051a8e 100644 --- a/reproducible-builds/Dockerfile +++ b/reproducible-builds/Dockerfile @@ -11,8 +11,8 @@ RUN apt-get update -y && apt-get install -y $(cat docker/dependencies.txt) RUN docker/print-versions.sh docker/dependencies.txt ENV ANDROID_SDK_FILENAME android-sdk_r24.4.1-linux.tgz -ENV ANDROID_API_LEVELS android-28 -ENV ANDROID_BUILD_TOOLS_VERSION 28.0.3 +ENV ANDROID_API_LEVELS android-29 +ENV ANDROID_BUILD_TOOLS_VERSION 29.0.3 ENV ANDROID_HOME /usr/local/android-sdk-linux ENV PATH ${PATH}:${ANDROID_HOME}/tools:${ANDROID_HOME}/platform-tools