From fcd3b501eb96be5b147bffec18ae4a95ff992cb1 Mon Sep 17 00:00:00 2001 From: Greyson Parrelli Date: Fri, 10 May 2019 13:01:34 -0700 Subject: [PATCH] Revert "Enable 64-bit." This reverts commit 67704612dfb73f94dc390201546368c3ae001e06. --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 34059810af..7b251b01e3 100644 --- a/build.gradle +++ b/build.gradle @@ -318,7 +318,7 @@ android { buildConfigField "String[]", "LANGUAGES", "new String[]{\"" + autoResConfig().collect { s -> s.replace('-r', '_') }.join('", "') + '"}' ndk { - abiFilters 'armeabi-v7a', 'x86', 'arm64-v8a', 'x86_64' + abiFilters 'armeabi-v7a', 'x86' } resConfigs autoResConfig() @@ -327,7 +327,7 @@ android { abi { enable true reset() - include 'armeabi-v7a', 'x86', 'arm64-v8a', 'x86_64' + include 'armeabi-v7a', 'x86' universalApk true } }