From 86338b2a0551a5f0891537c87babafcf6aeb8211 Mon Sep 17 00:00:00 2001 From: Mariano Ruiz Date: Thu, 17 Dec 2020 17:59:35 -0500 Subject: [PATCH] Commented the code that enables 'x86' builds --- build.gradle | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index baf91a09..abceba10 100644 --- a/build.gradle +++ b/build.gradle @@ -303,7 +303,11 @@ android { abi { enable true reset() - include 'armeabi-v7a', 'arm64-v8a', 'x86' + include( + 'armeabi-v7a', + 'arm64-v8a', + //'x86' //--> uncomment to be able to deploy the app in an Android 10+ virtual device + ) universalApk false } }