From a51aa2a8fea32089f23d655f6c37c76a4fef6dfb Mon Sep 17 00:00:00 2001 From: Devin Canterberry Date: Mon, 29 Jul 2019 10:45:36 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=A6=20Add=2064-bit=20support=20to=20An?= =?UTF-8?q?droid=20builds=20(v2.0.1)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- android/app/build.gradle | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 0af49f29..2cfee3cb 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -101,10 +101,10 @@ android { applicationId "com.lndr" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 39 - versionName "2.0.0" + versionCode 40 + versionName "2.0.1" ndk { - abiFilters "armeabi-v7a", "x86" + abiFilters "armeabi-v7a", "arm64-v8a", "x86", "x86_64" } } signingConfigs { @@ -132,7 +132,7 @@ android { reset() enable enableSeparateBuildPerCPUArchitecture universalApk false // If true, also generate a universal APK - include "armeabi-v7a", "x86" + include "armeabi-v7a", "arm64-v8a", "x86", "x86_64" } } buildTypes { @@ -153,7 +153,7 @@ android { variant.outputs.each { output -> // For each separate APK per architecture, set a unique version code as described here: // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits - def versionCodes = ["armeabi-v7a":1, "x86":2] + def versionCodes = ["armeabi-v7a": 1, "arm64-v8a": 2, "x86": 3, "x86_64": 4] def abi = output.getFilter(OutputFile.ABI) if (abi != null) { // null for the universal-debug, universal-release variants output.versionCodeOverride =