From 2b235f4d1077ce5e4e9dfd9ff82523a9f34fa682 Mon Sep 17 00:00:00 2001 From: bl00dymarie Date: Wed, 26 Jul 2023 10:27:45 +0200 Subject: [PATCH] Address Google Play 64-bit error; release isn't compliant with Google Play 64-bit requirement error --- android/app/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index d93b7ea..9d43233 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -137,7 +137,7 @@ android { versionCode 8 versionName "1.2102.28" ndk { - abiFilters "armeabi-v7a", "x86", "arm64-v8a" + abiFilters "armeabi-v7a", "x86", "arm64-v8a", "x86_64" } testBuildType System.getProperty('testBuildType', 'debug') // This will later be used to control the test apk build type testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' @@ -198,7 +198,7 @@ android { // For each separate APK per architecture, set a unique version code as described here: // https://developer.android.com/studio/build/configure-apk-splits.html // Example: versionCode 1 will generate 1001 for armeabi-v7a, 1002 for x86, etc. - def versionCodes = ["armeabi-v7a": 1, "x86": 2] + def versionCodes = ["armeabi-v7a": 1, "x86": 2, "arm64-v8a": 3, "x86_64": 4] def abi = output.getFilter(OutputFile.ABI) if (abi != null) { // null for the universal-debug, universal-release variants output.versionCodeOverride =