From 64124c2fd5e4d8eab6cbe2266cd278e0ad342555 Mon Sep 17 00:00:00 2001 From: bl00dymarie Date: Sun, 6 Feb 2022 14:13:40 +0100 Subject: [PATCH] Chore: Remove unspported platforms for gradle --- 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 2033649..5f158b8 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -135,7 +135,7 @@ android { versionCode 8 versionName "1.2102.28" ndk { - abiFilters "armeabi-v7a", "x86", "arm64-v8a", "x86_64" + abiFilters "armeabi-v7a", "x86" } testBuildType System.getProperty('testBuildType', 'debug') // This will later be used to control the test apk build type testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' @@ -182,7 +182,7 @@ android { variant.outputs.each { output -> // For each separate APK per architecture, set a unique version code as described here: // https://developer.android.com/studio/build/configure-apk-splits.html - def versionCodes = ["armeabi-v7a": 1, "x86": 2, "arm64-v8a": 3, "x86_64": 4] + def versionCodes = ["armeabi-v7a": 1, "x86": 2] def abi = output.getFilter(OutputFile.ABI) if (abi != null) { // null for the universal-debug, universal-release variants output.versionCodeOverride =